crysix / phpobfuscator

Automatically exported from code.google.com/p/phpobfuscator
0 stars 0 forks source link

No function obfuscator fails #14

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. try to obfuscate a file that has no functions defined.

What is the expected output? What do you see instead?
normal process but the software fails and gets blocked at that file

What version of the product are you using? On what operating system?
version: 0.1.0.0 

os: windows xp sp2.

file where it fails

$domain = $_SERVER['HTTP_HOST'];

//Checking that the user is currently visiting from the latest domain
if ($domain != "XXX.com" )
{
    echo <<<JAVASCRIPT
    <script>
    choice = confirm("The Site Has Moved to a New Domain YYY.com \\n Go to new
Domain ");
    if(choice)
        window.location = "http://YYY.com";
    </script>
JAVASCRIPT;
}

Original issue reported on code.google.com by gywsoci...@gmail.com on 8 Jul 2008 at 8:51