Skip to content

Latest commit

 

History

History
 
 

rop-impossible

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

SECCON CTF 2014: ROP: Impossible

Category: Exploit Points: 500 Description:

ropi.pwn.seccon.jp:10000

Read /flag and write the content to stdout, such as the following pseudo code.

open("/flag", 0);
read(3, buf, 32);
write(1, buf, 32);

Notice that the vuln executable is protected by an Intel Pin tool, the source code of which is norop.cpp.

vuln norop.cpp norop_conf

Write-up

(TODO)

Other write-ups and resources