├── .gitignore ├── LICENSE ├── README.md ├── headers ├── definitons.h ├── obfuscators.h └── sandbox.h ├── implant.cpp ├── scripts └── obfuscator.py └── translate.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/README.md -------------------------------------------------------------------------------- /headers/definitons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/headers/definitons.h -------------------------------------------------------------------------------- /headers/obfuscators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/headers/obfuscators.h -------------------------------------------------------------------------------- /headers/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/headers/sandbox.h -------------------------------------------------------------------------------- /implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/implant.cpp -------------------------------------------------------------------------------- /scripts/obfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/scripts/obfuscator.py -------------------------------------------------------------------------------- /translate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/A-Study-in-Obfuscation/HEAD/translate.txt --------------------------------------------------------------------------------