Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

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 10 years ago

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