├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── SECURITY.md ├── .gitignore ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── HISTORY.md ├── LICENSE ├── README.md ├── data ├── gpu_list.txt ├── hwid_list.txt ├── ip_list.txt ├── mac_list.txt ├── pc_name_list.txt ├── pc_platforms.txt └── pc_username_list.txt ├── docs ├── code_of_conduct.md ├── configuration │ ├── Events │ │ └── index.md │ ├── Modules │ │ ├── Anti Analysis │ │ │ ├── events.md │ │ │ └── index.md │ │ ├── Anti DLL │ │ │ ├── events.md │ │ │ └── index.md │ │ ├── Anti Dump │ │ │ ├── events.md │ │ │ └── index.md │ │ ├── Anti Process │ │ │ ├── events.md │ │ │ └── index.md │ │ ├── Anti VM │ │ │ ├── events.md │ │ │ └── index.md │ │ └── Miscellaneous │ │ │ ├── events.md │ │ │ └── index.md │ └── PythonProtector │ │ └── index.md ├── faq.md ├── favicon.png ├── index.md ├── installation.md ├── license.md └── release.md ├── examples └── protector.py ├── mkdocs.yml ├── pyproject.toml ├── pyprotector ├── __init__.py ├── abc.py ├── constants.py ├── modules │ ├── __init__.py │ ├── analysis.py │ ├── dll.py │ ├── dump.py │ ├── miscellaneous.py │ ├── process.py │ └── vm.py ├── protector.py ├── py.typed ├── types.py └── utils │ ├── __init__.py │ ├── events.py │ ├── exceptions.py │ ├── http.py │ ├── webhook.py │ └── windows.py ├── scripts ├── format.bat └── format_linux.sh └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | # Ghoul 2 | 3 | Discord - `heartghoul` 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/README.md -------------------------------------------------------------------------------- /data/gpu_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/gpu_list.txt -------------------------------------------------------------------------------- /data/hwid_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/hwid_list.txt -------------------------------------------------------------------------------- /data/ip_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/ip_list.txt -------------------------------------------------------------------------------- /data/mac_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/mac_list.txt -------------------------------------------------------------------------------- /data/pc_name_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/pc_name_list.txt -------------------------------------------------------------------------------- /data/pc_platforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/pc_platforms.txt -------------------------------------------------------------------------------- /data/pc_username_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/data/pc_username_list.txt -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/code_of_conduct.md -------------------------------------------------------------------------------- /docs/configuration/Events/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Events/index.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti Analysis/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti Analysis/events.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti Analysis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti Analysis/index.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti DLL/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti DLL/events.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti DLL/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti DLL/index.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti Dump/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti Dump/events.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti Dump/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti Dump/index.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti Process/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti Process/events.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti Process/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti Process/index.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti VM/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti VM/events.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Anti VM/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Anti VM/index.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Miscellaneous/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Miscellaneous/events.md -------------------------------------------------------------------------------- /docs/configuration/Modules/Miscellaneous/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/Modules/Miscellaneous/index.md -------------------------------------------------------------------------------- /docs/configuration/PythonProtector/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/configuration/PythonProtector/index.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/docs/release.md -------------------------------------------------------------------------------- /examples/protector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/examples/protector.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyprotector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/__init__.py -------------------------------------------------------------------------------- /pyprotector/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/abc.py -------------------------------------------------------------------------------- /pyprotector/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/constants.py -------------------------------------------------------------------------------- /pyprotector/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/__init__.py -------------------------------------------------------------------------------- /pyprotector/modules/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/analysis.py -------------------------------------------------------------------------------- /pyprotector/modules/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/dll.py -------------------------------------------------------------------------------- /pyprotector/modules/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/dump.py -------------------------------------------------------------------------------- /pyprotector/modules/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/miscellaneous.py -------------------------------------------------------------------------------- /pyprotector/modules/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/process.py -------------------------------------------------------------------------------- /pyprotector/modules/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/modules/vm.py -------------------------------------------------------------------------------- /pyprotector/protector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/protector.py -------------------------------------------------------------------------------- /pyprotector/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyprotector/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/types.py -------------------------------------------------------------------------------- /pyprotector/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/utils/__init__.py -------------------------------------------------------------------------------- /pyprotector/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/utils/events.py -------------------------------------------------------------------------------- /pyprotector/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/utils/exceptions.py -------------------------------------------------------------------------------- /pyprotector/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/utils/http.py -------------------------------------------------------------------------------- /pyprotector/utils/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/utils/webhook.py -------------------------------------------------------------------------------- /pyprotector/utils/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/pyprotector/utils/windows.py -------------------------------------------------------------------------------- /scripts/format.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cd .. 4 | 5 | ruff format -------------------------------------------------------------------------------- /scripts/format_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/scripts/format_linux.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xFGhoul/PythonProtector/HEAD/uv.lock --------------------------------------------------------------------------------