php-obfuscator
php-obfuscator copied to clipboard
A parsing PHP obfuscator
[Exception] Could not parse file "/data/wwwroot/a/service_tracking/app/admin/controller/AgentController.php" [PhpParser\Error] Syntax error, unexpected T_LIST, expecting T_STRING on line 2
I have tried different ways to address the path in Windows CMD. ``` ./bin/obfuscate obfuscate C:/xampp/htdocs/phptest/before C:/xampp/htdocs/phptest/after bin/obfuscate obfuscate C:/xampp/htdocs/phptest/before C:/xampp/htdocs/phptest/after ./bin/obfuscate obfuscate C:\xampp\htdocs\phptest\before C:\xampp\htdocs\phptest\after bin/obfuscate obfuscate C:\xampp\htdocs\phptest\before C:\xampp\htdocs\phptest\after obfuscate...
I tried this on ubuntu 20.04 with php 7.2. What happens is, it just removes the new line now variable method name change. I am not sure if this is...
Just copy paste encrypted code to PHP formatter like http://www.phpformatter.com/ Use encryption extension like [phpbolt.com](phpbolt.com)
I have added docker support as well as created a repository for it on Dockerhub, Additionally I have added an example of how to use this image in a Drone.io...
Hello, Thanks a lot for this great obfuscator. I was wondering if it was possible to add an exclude option?
Dockerfile and instructions to use it. I am using my own dockerhub repo, if you' d like either keep it of create your own repo for autobuilds.
``` function foo() { static $abc; $abc = 'xyz'; } ``` becomes ``` function foo() { static $abc; $blablabla = 'xyz'; } ``` the $abc is not obfuscated ??
Hi Any example on how to run obfuscator from withing php script without going through command line. Thanks