├── README.md ├── bin ├── .gitignore ├── README.md ├── fetch.py └── requirements.txt ├── mal_unpack_lib ├── README.md ├── malunpack │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── malunpack.py │ └── requirements.txt └── test.py └── runner ├── .gitignore ├── README.md ├── mal_unpack_runner.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.exe 3 | 4 | -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/bin/fetch.py -------------------------------------------------------------------------------- /bin/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /mal_unpack_lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/mal_unpack_lib/README.md -------------------------------------------------------------------------------- /mal_unpack_lib/malunpack/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.exe 3 | *log 4 | __pycache__/* 5 | dumps/* 6 | util_path.py 7 | -------------------------------------------------------------------------------- /mal_unpack_lib/malunpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/mal_unpack_lib/malunpack/README.md -------------------------------------------------------------------------------- /mal_unpack_lib/malunpack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mal_unpack_lib/malunpack/malunpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/mal_unpack_lib/malunpack/malunpack.py -------------------------------------------------------------------------------- /mal_unpack_lib/malunpack/requirements.txt: -------------------------------------------------------------------------------- 1 | pefile 2 | uuid 3 | -------------------------------------------------------------------------------- /mal_unpack_lib/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/mal_unpack_lib/test.py -------------------------------------------------------------------------------- /runner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/runner/.gitignore -------------------------------------------------------------------------------- /runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/runner/README.md -------------------------------------------------------------------------------- /runner/mal_unpack_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/mal_unpack_py/HEAD/runner/mal_unpack_runner.py -------------------------------------------------------------------------------- /runner/requirements.txt: -------------------------------------------------------------------------------- 1 | pefile 2 | uuid 3 | --------------------------------------------------------------------------------