Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #!/usr/bin/env python
  2. import collections, string, hashlib
  3. input = 'reyedfim'
  4.  
  5. for x in range(0,90000000):
  6.     h = hashlib.new('md5')
  7.     h.update(input+str(x))
  8.     hash = h.hexdigest()
  9.     if hash.startswith('00000'):
  10.         print hash[5]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement