[PHP]
<?php
header('content-type:image/jpeg');
$connection = fsockopen('img-a5.pe.imagevz.net', 80);
fputs($connection, "GET /profile1/90/f3/73d9f70b29faaec2195f2d359acb/1-5005728f81d6e2a2.jpg HTTP/1.1\r\n");
fputs($connection, "Host: img-a5.pe.imagevz.net\r\n");
fputs($connection, "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2\r\n");
fputs($connection, "Referer: http://www.studivz.net/Profile/db724fe3837b571e\r\n");
fputs($connection, "Content-type: application/x-www-form-urlencoded\r\n");
fputs($connection, "Content-length: ". strlen($data) ."\r\n");
fputs($connection, "Connection: close\r\n\r\n");
fputs($connection, $data);
while(!feof($connection)) {
$res .= fgets($connection, 128);
}
fclose($connection);
$res = substr($res, strpos($res, "\r\n\r\n") + 4);
echo $res;
?>
[/PHP]
Als Referer eine Profil URL aus dem Netzwerk.