Advertisement
Mr_hEx

Flippin Bank HTB

Dec 18th, 2020
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #!/usr/bin/env python2 from binascii import unhexlify,hexlify
  2.  
  3. print("[+] Put right password and wrong username Eg: xdmin \n[+] If you change x from username edit source code !!")
  4. Enc = raw_input("[+] Type your Encrypt hash : ")
  5. Cip_unhex = unhexlify(Enc)
  6. chars_xor = ord('x') ^ ord ('a')
  7. Cip_unhex_ = chr(ord(Cip_unhex[0]) ^ chars_xor) + Cip_unhex[1:]
  8. print("[+] After Edit : {}".format(hexlify(Cip_unhex_)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement