PhieuLang

RE300

Sep 18th, 2015
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. s = 0xD386D209
  2. password = ""
  3. for p in password:
  4.     s-=ord(p)
  5.     s/=33
  6. n = s%33
  7. i = 0
  8. c = n+33*i
  9. while c>0 and c<127:
  10.     c = n+33*i
  11.     if c >= 32 and c<127:
  12.         print c,chr(c)
  13.     i+=1
Advertisement
Add Comment
Please, Sign In to add comment