Created
          June 17, 2015 05:35 
        
      - 
      
 - 
        
Save evernick/8cc8142b38457b8aac9f to your computer and use it in GitHub Desktop.  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from itertools import product | |
| chars = '0123456789QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm' # Chars Dictionary | |
| for length in range(1, 5): # length 1 to 4 | |
| to_attempt = product(chars, repeat=length) | |
| for attempt in to_attempt: | |
| brute = ''.join(attempt) | |
| print brute | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment