Advertisement
Guest User

Example

a guest
Jun 7th, 2015
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. permutations = itertools.permutations("abcdefghijklmnoprstuvyzwxq1234567890_", 10)
  2. a = list(permutations)
  3. while len(a) > 0:
  4.     new_list = a[:5000]
  5.     threading.Thread(target=crack, args=())
  6.     a = a[5000:]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement