The RP++ ROP Finder
·1 min
Table of Contents
The rp++ is a ROP Gadget finder used by Exploit Developers to bypass DEP protection.
Oficial link rp++
You will need to compile.
How to use #
Note.: -r means how many assembly instructions, -f the path to the .dll or .exe to extract the gadgets and > to re-direct the results to a file. You can also exclude bad chars with bad chars.
rp++.exe -r 5 -f <some.dll> > rop_some.dll
with new version you can exclude bad characters
rp++.exe --bad-bytes '\x00\x0a' -r 5 -f <some.dll> > rop_some.dll