├── .github └── FUNDING.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.py ├── images └── php-obfuscator.png ├── main.py ├── requirements.txt └── start.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mnestorov 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnestorov/php-obfuscator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnestorov/php-obfuscator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnestorov/php-obfuscator/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnestorov/php-obfuscator/HEAD/config.py -------------------------------------------------------------------------------- /images/php-obfuscator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnestorov/php-obfuscator/HEAD/images/php-obfuscator.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnestorov/php-obfuscator/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python3 /home/YOUR_USERNAME/path/to/your/script/main.py --------------------------------------------------------------------------------