Advertisement
Guest User

Hypnohub get cookies

a guest
Jun 17th, 2021
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. import hashlib
  2.  
  3. def get_cookies(username, password):
  4.     password = "choujin-steiner--" + password + "--"
  5.     sha_1 = hashlib.sha1()
  6.     sha_1.update(password.encode('utf-8'))
  7.     password = sha_1.hexdigest()
  8.     cookies = {"login": username, "pass_hash": password}
  9.     return cookies
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement