online-php-obfuscator
online-php-obfuscator copied to clipboard
Bugs in code
There are some following bugs in files.
-
Add extra code "$targetDir = str_replace("","/",$targetDir);" to upload.php at line 149
- there is an error in parsing JSON in response at file uploading because of "" character in response data named "filePath" value.
-
File : "obfuscator\encoders\encode.php" replace " (" with "(" because it cause an error in identifying class name.
-
File : "obfuscator\encoders\obfuscateVariables.php" - proper complete tags.
-
Bugs in file compressing and deleting old files.
The first 3 bugs were fixed.
I'll look into the bugs in compressing and deleting old files.
"$targetDir = str_replace("","/",$targetDir);"
breaks the upload.php
$targetDir = str_replace('','/', $targetDir) ; should do it