├── .github └── workflows │ ├── cicd.yml │ └── publish.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── pyproject.toml ├── samples ├── v092.7z ├── v093.7z └── v1.7z ├── src └── donut_decryptor │ ├── __init__.py │ ├── cli.py │ ├── data │ └── rules.yar │ ├── decryptor.py │ └── definitions.py └── tests ├── __init__.py └── test_decryptor.py /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /samples/v092.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/samples/v092.7z -------------------------------------------------------------------------------- /samples/v093.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/samples/v093.7z -------------------------------------------------------------------------------- /samples/v1.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/samples/v1.7z -------------------------------------------------------------------------------- /src/donut_decryptor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/src/donut_decryptor/__init__.py -------------------------------------------------------------------------------- /src/donut_decryptor/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/src/donut_decryptor/cli.py -------------------------------------------------------------------------------- /src/donut_decryptor/data/rules.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/src/donut_decryptor/data/rules.yar -------------------------------------------------------------------------------- /src/donut_decryptor/decryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/src/donut_decryptor/decryptor.py -------------------------------------------------------------------------------- /src/donut_decryptor/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/src/donut_decryptor/definitions.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_decryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volexity/donut-decryptor/HEAD/tests/test_decryptor.py --------------------------------------------------------------------------------