Hier findest du alle Informationen die dein PC an jede Webseite sendet:

$value) $data .="&".$key."=".$value; $sock = fsockopen("anoncheck.gulli.com", 80, $errno, $errstr, 30); if (!$sock) die("$errstr ($errno)\n"); $request = "POST /remote_handler.php HTTP/1.0\r\n". "Host: anoncheck.gulli.com\r\n". "Content-type: application/x-www-form-urlencoded\r\n". "Content-length: ".strlen($data)."\r\n". "Accept: */*\r\n\r\n".$data."\r\n\r\n"; fwrite($sock,$request); while ($str = trim(fgets($sock, 4096))) $headers .= $str."\n"; while (!feof($sock)) $body .= fgets($sock, 4096); fclose($sock); echo $body."\n"; ?>