Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

Brute Force Genorater - Python Code Bank


Brute Force Genorater
This simple code will generate a list of geometrical progressed entries for supplied input. Coupled with a web-based program could be used to brute force passwords. I've used it with the SendKeys module to crack router PIN numbers.
                import itertools

entrys = raw_input("Characters to try: ")

poss = []
perm = itertools.permutations(entrys)
for a in perm:
  s = ""
  for t in a: 
    s += t
  poss.append(s)
            
Comments
vkey's avatar
vkey 9 years ago

improve it by using import mechanize and try to hit on the inputbar in the website…….thumbs up