psmreborn/404.php

11 lines
299 B
PHP
Raw Permalink Normal View History

2020-04-08 21:05:22 +00:00
<?php
2022-09-19 12:50:45 +00:00
$resp_codes = array(200,404,500,403,301);
2020-04-08 21:05:22 +00:00
$code = $resp_codes[array_rand($resp_codes)];
http_response_code($code); //Troll fuzzers
2022-09-19 12:50:45 +00:00
echo("Theres nothing here! go back or something.<br><script>location='https://psmreborn.com/'</script>");
for($i = 0; $i < 50; $i++){
echo("<br>");
}
2020-04-08 21:05:22 +00:00
?>