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