├── .gitignore ├── Makefile.template ├── README.md ├── app ├── __init__.py ├── app.py ├── manage.py ├── models │ └── __init__.py ├── requirements.txt ├── routes │ ├── __init__.py │ ├── main.py │ └── utils.py ├── static │ └── js │ │ └── calc.js └── templates │ ├── base.html │ └── main.html ├── ast ├── hiding_strings │ ├── Makefile │ ├── README.md │ ├── encode.py │ ├── tree_parser.py │ └── unparse.py └── scrambling_code │ ├── Makefile │ ├── README.md │ ├── ihook.py │ ├── manage.py │ ├── scramble.py │ ├── scrambler.py │ ├── unparse.py │ └── unscramble.py ├── bytecode ├── pyc │ ├── Makefile │ └── README.md └── pyo │ ├── Makefile │ └── README.md ├── custom_interpreter └── opcodes │ ├── .python-version │ ├── 2.7.9-custom │ ├── Makefile │ ├── README.md │ ├── patches │ ├── .empty │ └── 001_scrambled-opcodes.diff │ └── scramble-opcodes.py ├── cython ├── Makefile └── README.md └── import_hook ├── compiled ├── Makefile ├── README.md ├── ihook.py ├── m.py └── requirements.txt └── python ├── Makefile ├── README.md ├── ihook.py ├── m.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/Makefile.template -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/app.py -------------------------------------------------------------------------------- /app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/manage.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/routes/main.py -------------------------------------------------------------------------------- /app/routes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/routes/utils.py -------------------------------------------------------------------------------- /app/static/js/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/static/js/calc.js -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/app/templates/main.html -------------------------------------------------------------------------------- /ast/hiding_strings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/hiding_strings/Makefile -------------------------------------------------------------------------------- /ast/hiding_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/hiding_strings/README.md -------------------------------------------------------------------------------- /ast/hiding_strings/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/hiding_strings/encode.py -------------------------------------------------------------------------------- /ast/hiding_strings/tree_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/hiding_strings/tree_parser.py -------------------------------------------------------------------------------- /ast/hiding_strings/unparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/hiding_strings/unparse.py -------------------------------------------------------------------------------- /ast/scrambling_code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/Makefile -------------------------------------------------------------------------------- /ast/scrambling_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/README.md -------------------------------------------------------------------------------- /ast/scrambling_code/ihook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/ihook.py -------------------------------------------------------------------------------- /ast/scrambling_code/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/manage.py -------------------------------------------------------------------------------- /ast/scrambling_code/scramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/scramble.py -------------------------------------------------------------------------------- /ast/scrambling_code/scrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/scrambler.py -------------------------------------------------------------------------------- /ast/scrambling_code/unparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/unparse.py -------------------------------------------------------------------------------- /ast/scrambling_code/unscramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/ast/scrambling_code/unscramble.py -------------------------------------------------------------------------------- /bytecode/pyc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/bytecode/pyc/Makefile -------------------------------------------------------------------------------- /bytecode/pyc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/bytecode/pyc/README.md -------------------------------------------------------------------------------- /bytecode/pyo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/bytecode/pyo/Makefile -------------------------------------------------------------------------------- /bytecode/pyo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/bytecode/pyo/README.md -------------------------------------------------------------------------------- /custom_interpreter/opcodes/.python-version: -------------------------------------------------------------------------------- 1 | 2.7.9-custom 2 | -------------------------------------------------------------------------------- /custom_interpreter/opcodes/2.7.9-custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/custom_interpreter/opcodes/2.7.9-custom -------------------------------------------------------------------------------- /custom_interpreter/opcodes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/custom_interpreter/opcodes/Makefile -------------------------------------------------------------------------------- /custom_interpreter/opcodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/custom_interpreter/opcodes/README.md -------------------------------------------------------------------------------- /custom_interpreter/opcodes/patches/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_interpreter/opcodes/patches/001_scrambled-opcodes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/custom_interpreter/opcodes/patches/001_scrambled-opcodes.diff -------------------------------------------------------------------------------- /custom_interpreter/opcodes/scramble-opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/custom_interpreter/opcodes/scramble-opcodes.py -------------------------------------------------------------------------------- /cython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/cython/Makefile -------------------------------------------------------------------------------- /cython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/cython/README.md -------------------------------------------------------------------------------- /import_hook/compiled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/compiled/Makefile -------------------------------------------------------------------------------- /import_hook/compiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/compiled/README.md -------------------------------------------------------------------------------- /import_hook/compiled/ihook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/compiled/ihook.py -------------------------------------------------------------------------------- /import_hook/compiled/m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/compiled/m.py -------------------------------------------------------------------------------- /import_hook/compiled/requirements.txt: -------------------------------------------------------------------------------- 1 | pycrypto 2 | -------------------------------------------------------------------------------- /import_hook/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/python/Makefile -------------------------------------------------------------------------------- /import_hook/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/python/README.md -------------------------------------------------------------------------------- /import_hook/python/ihook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/python/ihook.py -------------------------------------------------------------------------------- /import_hook/python/m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormulaMonks/python-obfuscation/HEAD/import_hook/python/m.py -------------------------------------------------------------------------------- /import_hook/python/requirements.txt: -------------------------------------------------------------------------------- 1 | pycrypto 2 | --------------------------------------------------------------------------------