online-php-obfuscator icon indicating copy to clipboard operation
online-php-obfuscator copied to clipboard

Bugs in code

Open atul-savaliya opened this issue 11 years ago • 2 comments

There are some following bugs in files.

  1. 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.
  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 tags.

  4. Bugs in file compressing and deleting old files.

atul-savaliya avatar Nov 03 '13 07:11 atul-savaliya

The first 3 bugs were fixed.

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

pl4g4 avatar Nov 04 '13 18:11 pl4g4

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

breaks the upload.php

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

pl4g4 avatar Nov 05 '13 17:11 pl4g4