c0d3dsk1lls

Brute force password cracker

Jun 13th, 2022 (edited)
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.42 KB | None | 0 0
  1. import itertools as it
  2. class Brutes: # insert.function.feelsgoodman()#
  3.     def __init__(self, charset, length): #function.added = long n hard.
  4.            self.charset = charset # make.function = cum
  5.            self.length = length # cum.make = more. 1-2-3-4 can I have a little more - 5-6-7-8-9-10 I love you
  6.     def crackit(self, password):##### put.in.her = whore.
  7.                         pass##
  8.      #touch.feelsgood.blow.  
  9.     @property #############################################################################---
  10.     #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
  11.     def guesses(self):#$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$---
  12.         for guess in it.product(self.charset, repeat=self.length): #############################---
  13.                                                         yield ''.join(guess)#############---
  14. ##################++++++++++++++++++++++++++++++++++++++++++||||||||||||||||||||||||||||||||||||||||||
  15. def main():#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  16.     brute = Brutes('0123456789abcdefghijklmnopqrstuvwxyz', 8)
  17.     for guess in brute.guesses:
  18.                             print(guess) # field pajamas.ketchup = mayn.spread
  19.  #def cum()#       mayo.spread = rub.bread
  20.  #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
  21. if __name__ == '__main__':
  22.     main()
  23.  
  24.  
Add Comment
Please, Sign In to add comment