Skip to content

Instantly share code, notes, and snippets.

@itsbriany
Created November 17, 2019 16:34
Show Gist options
  • Save itsbriany/422fd8de98cdd3b6a7613c70561240d9 to your computer and use it in GitHub Desktop.
Save itsbriany/422fd8de98cdd3b6a7613c70561240d9 to your computer and use it in GitHub Desktop.
Flare-On 2019 Challenge 1
obfuscated = [
'\u0003',
' ',
'&',
'$',
'-',
'\u001e',
'\u0002',
' ',
'/',
'/',
'.',
'/'
]
key = 'A'
result = [chr(ord(x) ^ ord(key)) for x in obfuscated]
print(''.join(result))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment