Friday 11 October 2013

Making Phishing Website

Hey mates. Today i tell you how to make phishing website, how to put it online and how to hide the link of your phishing website.


You need NotePad, that wont be a problem if you have Windows ;) and you need a free webhoster.

# Create a notepad file and call it index.html Be carful the letters should be lower!!
# Visit the website you want to fake and go to the log in section.

# Press the right mouse button and click on view page source
Copy everything to the index.html

So far so good. Now you have the hole page in your document.


# Press control+F and search for the word : action
If you found it delete the hole URL behind the word action. Becarful just the URL!!
Now you fill in post.php and save the file as index.html.
Test the html file and you will see you got the login page.

# Open a new notepad file and copy the following. Don´t forget to type in the URL of the website you want to fake!



<?php

Header('Location: http://www.type/ in the url of the website.com');


$handle = fopen("pwd.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;
?>

# save it as post.php
Now you have a php and a html file. So you have all what you need.

# Use google to find a free webhoster and register for free. Follow all steps and you will get it easylie. Often you have to wait 24h for activating.
It doesn´t matter which webhoster you use.

# If your page are activatet go to the control panel and look for an option call´s FileManager.
Now upload the .html and .php file.

# Check your URL and you will see the phising website.#

If somebody try to log in on the phising website you get a new file in your control panel called username.txt or something. Open it and you get the username + pass.


So you want to send the URL to a victim but the link is too strange?

#Open bit.ly and sign in for a free account.

#Copy your link from the phishing website to the shorten URL box and click on customize. Now you can change the URL and make it more trustworthy.

No comments:

Post a Comment