pyrodude Posted August 5, 2007 Share Posted August 5, 2007 Did a simple test <?php $test="test"; ?> and the top of the page has "Array ( [0] => "test" ) Also, the hyperlink at the bottom is displaying as <a href="/obfuscator/index.php>Obfuscate some more code rather than the actual link Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-316227 Share on other sites More sharing options...
Fadion Posted August 6, 2007 Share Posted August 6, 2007 It worked smoothly for a not so short code i entered. Pretty complex thing u got there Oh and yeah the link at the bottom is a bit messed up Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-316383 Share on other sites More sharing options...
lococobra Posted August 10, 2007 Author Share Posted August 10, 2007 Yeah, there are still some problems, but at this point... It's become unmanageably complex. If someone wants to step in and help me out with it... I'd be glad to have the help. PM me about it and I'll set you up with FTP access. Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-320551 Share on other sites More sharing options...
Warptweet Posted August 27, 2007 Share Posted August 27, 2007 SWEET I'm using this! Very useful. Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-335680 Share on other sites More sharing options...
xylex Posted September 1, 2007 Share Posted September 1, 2007 Now I'm not trying to say your work is pointless, but it can easily be switched back to code that is much easier to read. Your script may stop the casaul hacker from making a quick edit, but I would question the protection that it would offer on any expensive or wide distro project. A basic decode script- Note that this errors out if there are escaped quotes in the encoded script, but that could be easily fixed as well. <?php if (get_magic_quotes_gpc) $value = stripslashes($_REQUEST['code']); else $value = $_REQUEST['code']; $search = array ('"','$','?>','<?', ';'); $replace = array ('\"', '\$', '?>', '<?', ";\n"); $value = str_replace($search, $replace, $value); eval ('echo "<pre>'.$value.'</pre>";'); ?> <h3>Enter Code</h3> <form method="post"> <textarea name="code"></textarea> <input type="submit"> Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-339022 Share on other sites More sharing options...
Guardian-Mage Posted September 3, 2007 Share Posted September 3, 2007 Well, this would easily stop people with no knowledge of PHP and no logical thinking what so ever, but even with all the options enabled, the original php can be revealed within minutes. Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-340435 Share on other sites More sharing options...
effigy Posted September 6, 2007 Share Posted September 6, 2007 I've removed all the belligerent posts. Let's play nice folks, and try to have an ounce of maturity as well. Link to comment https://forums.phpfreaks.com/topic/59851-online-php-obfuscator/page/2/#findComment-343201 Share on other sites More sharing options...
Recommended Posts