You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when calling e.g. rop.system("/bin/sh") and doing rop.dump() we might print out the address of /bin/sh with e.g. arg0 as the "description" for that ROP slot.
Currently, when calling e.g.
rop.system("/bin/sh")
and doingrop.dump()
we might print out the address of/bin/sh
with e.g.arg0
as the "description" for that ROP slot.It would be useful if, when doing
rop.call
, we look up the function in @zachriggle'sfunctions.py
(https://github.com/zachriggle/functions/blob/master/functions.py) and use the argument name from there.Since this is a huge file, it should be lazily-loaded.
In this case, it has a line:
So we would be able to use
char* command
instead ofarg0
.The text was updated successfully, but these errors were encountered: