Skip to content

Instantly share code, notes, and snippets.

@73696e65
Created August 2, 2017 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 73696e65/e391ffa32892c886fb4475d436e3987a to your computer and use it in GitHub Desktop.
Save 73696e65/e391ffa32892c886fb4475d436e3987a to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from sys import stdout
secret = "4e5d4e92865a4e495a86494b5a5d49525261865f5758534d4a89".decode("hex")
for x in secret:
stdout.write( chr(((ord(x) ^ 50 ^ 115) + 89) & 255) )
# huh, that actually worked!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment