├── .gitignore ├── LICENSE.md ├── README.md ├── __init__.py ├── deflatten.py ├── plugin.json └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | test/ 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPISEC/llvm-deobfuscator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPISEC/llvm-deobfuscator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPISEC/llvm-deobfuscator/HEAD/__init__.py -------------------------------------------------------------------------------- /deflatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPISEC/llvm-deobfuscator/HEAD/deflatten.py -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPISEC/llvm-deobfuscator/HEAD/plugin.json -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPISEC/llvm-deobfuscator/HEAD/util.py --------------------------------------------------------------------------------