Skip to content

Instantly share code, notes, and snippets.

@ywkw1717
Created October 28, 2018 08:12
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 ywkw1717/7db0aa8e38aaddb332bf995d9a618f91 to your computer and use it in GitHub Desktop.
Save ywkw1717/7db0aa8e38aaddb332bf995d9a618f91 to your computer and use it in GitHub Desktop.
SECCON CTF 2018 Online Runme
#!/usr/bin/env python
def main():
a = [0x43,0x3a,0x5c,0x54,0x65,0x6d,0x70,0x5c,0x53,0x45,0x43,0x43,0x4f,0x4e,0x32,0x30,0x31,0x38,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x2e,0x65,0x78,0x65,0x22,0x20,0x53,0x45,0x43,0x43,0x4f,0x4e,0x7b,0x52,0x75,0x6e,0x6e,0x31,0x6e,0x36,0x5f,0x50,0x34,0x37,0x68,0x7d]
flag = ""
for i in a:
flag += chr(i)
print flag
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment