Advertisement
Guest User

Untitled

a guest
Jul 12th, 2015
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. from itertools import product
  2.  
  3. chars = '0123456789QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm' # Chars Dictionary
  4.  
  5. for length in range(1, 5): # length 1 to 4
  6. to_attempt = product(chars, repeat=length)
  7. for attempt in to_attempt:
  8. brute = ''.join(attempt)
  9. print brute
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement