pl4g4 / online-php-obfuscator

This is a free online php obfuscator
28 stars 22 forks source link

Bugs in code #1

Open atul-savaliya opened 10 years ago

atul-savaliya commented 10 years ago

There are some following bugs in files.

1) Add extra code "$targetDir = str_replace("\","\/",$targetDir);" to upload.php at line 149

2) File : "obfuscator\encoders\encode.php" replace " (" with "(" because it cause an error in identifying class name.

3) File : "obfuscator\encoders\obfuscateVariables.php" - proper complete <?php ?> tags.

4) Bugs in file compressing and deleting old files.

pl4g4 commented 10 years ago

The first 3 bugs were fixed.

I'll look into the bugs in compressing and deleting old files.

pl4g4 commented 10 years ago

"$targetDir = str_replace("\","\/",$targetDir);"

breaks the upload.php

$targetDir = str_replace('\','\/', $targetDir) ; should do it