This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
simple-nc-server/index.php
T

6 lines
239 B
PHP

<?php
$template = str_replace(["<%=", "<%", "%>"], ["<%echo ", "\nRAW\n", "\ncat <<- RAW\n", ""], file_get_contents('index.sh.html'));
$query_string = $_SERVER['QUERY_STRING'];
echo shell_exec("GET=\"$query_string\"; $template");
?>