Advertisement
Lulz-Tigre

another_dict

Jul 10th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.74 KB | None | 0 0
  1. #!/usr/bin/python
  2. #Coded by ~Lulz Tigre
  3. #Dictionary Attack Script
  4.  
  5. import string, random
  6.  
  7. minimum=input('Enter the least amount of charachters you want to be generated: ')
  8. maximum=input('Enter the maximum amount of charachters you want to be generated: ')
  9. wmaximum=input('Please enter the max number of words to be generate in the dictionary: ')
  10.  
  11. # + string.punctuation add to (alphabet) line below if you want punctuation charachters
  12.  
  13. wordlist = string.letters[0:52] + string.digits
  14. string=''
  15. FILE = open("wl.txt","w")
  16. for count in xrange(0,wmaximum):
  17.   for x in random.sample(wordlist,random.randint(minimum,maximum)):
  18.       string+=x
  19.   FILE.write(string+'\n')
  20.   string=''
  21. FILE.close()
  22. print """Done
  23.        Skype:jackingaccounts """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement