Skip to content

Instantly share code, notes, and snippets.

@193s
Created October 22, 2015 10:10
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 193s/d6798cddbd7aca7549ac to your computer and use it in GitHub Desktop.
Save 193s/d6798cddbd7aca7549ac to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# Hash: 56 33 17 0b 30 24 1d 02 17 16 00 00 1a 1f 13 44
a = map(lambda x:int(x,16), '56 33 17 0b 30 24 1d 02 17 16 00 00 1a 1f 13 44'.split(' '))
flag = ''
x = 0
for t in a:
x ^= t
flag += chr(x)
print flag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment