Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import itertools as it
- class Brutes: # insert.function.feelsgoodman()#
- def __init__(self, charset, length): #function.added = long n hard.
- self.charset = charset # make.function = cum
- 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
- def crackit(self, password):##### put.in.her = whore.
- pass##
- #touch.feelsgood.blow.
- @property #############################################################################---
- #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
- def guesses(self):#$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$---
- for guess in it.product(self.charset, repeat=self.length): #############################---
- yield ''.join(guess)#############---
- ##################++++++++++++++++++++++++++++++++++++++++++||||||||||||||||||||||||||||||||||||||||||
- def main():#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- brute = Brutes('0123456789abcdefghijklmnopqrstuvwxyz', 8)
- for guess in brute.guesses:
- print(guess) # field pajamas.ketchup = mayn.spread
- #def cum()# mayo.spread = rub.bread
- #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
- if __name__ == '__main__':
- main()
Add Comment
Please, Sign In to add comment