Guest User

Untitled

a guest
May 31st, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 0.84 KB | None | 0 0
  1. fo = open("Jeran.txt", "wb")
  2. def main():
  3.         #key=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9"]
  4.         key=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9"]
  5.         keylength=len(key)
  6.         charactercount=6
  7.         currentcount=1
  8.         password=""
  9.         c=0
  10.         for currentcount in range(1,charactercount):
  11.                 for b in range(0,keylength**currentcount):
  12.                         password = ""
  13.                         for a in range(0,currentcount):
  14.                                 password+= key[(b/keylength**a)%keylength]
  15.                         fo.write(password+"\n")
  16.                         print password
  17.         fo.close()
  18. main()
Add Comment
Please, Sign In to add comment