├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other.md ├── pull_request_template.md └── workflows │ ├── bandit.yml │ ├── build.yml │ ├── greetings.yml │ └── label.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets ├── Eric Cartman Somalia.gif ├── Icon648.ico ├── somalia.ico └── somalia.png ├── requirements.txt ├── setup.bat ├── src ├── main.py └── util │ ├── auto_updating │ └── updater.py │ ├── methods │ ├── anti_methods │ │ ├── anti_changes.py │ │ ├── anti_console.py │ │ ├── anti_s_screen.py │ │ └── antivm.ps1 │ ├── common │ │ └── common.py │ ├── custom │ │ └── decorators │ │ │ └── custom_decorators.py │ ├── dead_code │ │ └── dead_code.py │ ├── encryption_methods │ │ └── cesar_cypher.py │ └── math_methods │ │ └── bit_math.py │ ├── obfuscation │ ├── obf_oneline.py │ ├── obfuscate.py │ ├── rans.py │ └── scrambler.py │ ├── supporting │ ├── gens.py │ ├── logger.py │ ├── settings.py │ └── types.py │ └── ui │ └── ui.py ├── test_all.py └── tests ├── simple_for.bat ├── test_1.bat ├── test_10.bat ├── test_11.bat ├── test_12.bat ├── test_13.bat ├── test_2.bat ├── test_3.bat ├── test_4.bat ├── test_5.bat ├── test_6.bat ├── test_7.bat ├── test_8.bat ├── test_9.bat └── tests_full ├── simple_for.bat ├── test_12.bat ├── test_2.bat ├── test_3.bat ├── test_4.bat ├── test_5.bat ├── test_7.bat ├── test_8.bat └── test_9.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/workflows/bandit.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/README.md -------------------------------------------------------------------------------- /assets/Eric Cartman Somalia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/assets/Eric Cartman Somalia.gif -------------------------------------------------------------------------------- /assets/Icon648.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/assets/Icon648.ico -------------------------------------------------------------------------------- /assets/somalia.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/assets/somalia.ico -------------------------------------------------------------------------------- /assets/somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/assets/somalia.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich 2 | BatchParse 3 | requests 4 | kdot 5 | primefac 6 | pytest 7 | textual -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/setup.bat -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/main.py -------------------------------------------------------------------------------- /src/util/auto_updating/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/auto_updating/updater.py -------------------------------------------------------------------------------- /src/util/methods/anti_methods/anti_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/anti_methods/anti_changes.py -------------------------------------------------------------------------------- /src/util/methods/anti_methods/anti_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/anti_methods/anti_console.py -------------------------------------------------------------------------------- /src/util/methods/anti_methods/anti_s_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/anti_methods/anti_s_screen.py -------------------------------------------------------------------------------- /src/util/methods/anti_methods/antivm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/anti_methods/antivm.ps1 -------------------------------------------------------------------------------- /src/util/methods/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/common/common.py -------------------------------------------------------------------------------- /src/util/methods/custom/decorators/custom_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/custom/decorators/custom_decorators.py -------------------------------------------------------------------------------- /src/util/methods/dead_code/dead_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/dead_code/dead_code.py -------------------------------------------------------------------------------- /src/util/methods/encryption_methods/cesar_cypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/encryption_methods/cesar_cypher.py -------------------------------------------------------------------------------- /src/util/methods/math_methods/bit_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/methods/math_methods/bit_math.py -------------------------------------------------------------------------------- /src/util/obfuscation/obf_oneline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/obfuscation/obf_oneline.py -------------------------------------------------------------------------------- /src/util/obfuscation/obfuscate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/obfuscation/obfuscate.py -------------------------------------------------------------------------------- /src/util/obfuscation/rans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/obfuscation/rans.py -------------------------------------------------------------------------------- /src/util/obfuscation/scrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/obfuscation/scrambler.py -------------------------------------------------------------------------------- /src/util/supporting/gens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/supporting/gens.py -------------------------------------------------------------------------------- /src/util/supporting/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/supporting/logger.py -------------------------------------------------------------------------------- /src/util/supporting/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/supporting/settings.py -------------------------------------------------------------------------------- /src/util/supporting/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/supporting/types.py -------------------------------------------------------------------------------- /src/util/ui/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/src/util/ui/ui.py -------------------------------------------------------------------------------- /test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/test_all.py -------------------------------------------------------------------------------- /tests/simple_for.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/simple_for.bat -------------------------------------------------------------------------------- /tests/test_1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_1.bat -------------------------------------------------------------------------------- /tests/test_10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_10.bat -------------------------------------------------------------------------------- /tests/test_11.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_11.bat -------------------------------------------------------------------------------- /tests/test_12.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_12.bat -------------------------------------------------------------------------------- /tests/test_13.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_13.bat -------------------------------------------------------------------------------- /tests/test_2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_2.bat -------------------------------------------------------------------------------- /tests/test_3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_3.bat -------------------------------------------------------------------------------- /tests/test_4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_4.bat -------------------------------------------------------------------------------- /tests/test_5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_5.bat -------------------------------------------------------------------------------- /tests/test_6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_6.bat -------------------------------------------------------------------------------- /tests/test_7.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_7.bat -------------------------------------------------------------------------------- /tests/test_8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_8.bat -------------------------------------------------------------------------------- /tests/test_9.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/test_9.bat -------------------------------------------------------------------------------- /tests/tests_full/simple_for.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/simple_for.bat -------------------------------------------------------------------------------- /tests/tests_full/test_12.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_12.bat -------------------------------------------------------------------------------- /tests/tests_full/test_2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_2.bat -------------------------------------------------------------------------------- /tests/tests_full/test_3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_3.bat -------------------------------------------------------------------------------- /tests/tests_full/test_4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_4.bat -------------------------------------------------------------------------------- /tests/tests_full/test_5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_5.bat -------------------------------------------------------------------------------- /tests/tests_full/test_7.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_7.bat -------------------------------------------------------------------------------- /tests/tests_full/test_8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_8.bat -------------------------------------------------------------------------------- /tests/tests_full/test_9.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingKDot/SomalifuscatorV2/HEAD/tests/tests_full/test_9.bat --------------------------------------------------------------------------------