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
It demonstrates an example on instrumenting a function by its address. I was wondering if the same goal can
be achieved with a symbol name. It will be a very useful feature for us to analyze some binaries with debugging information included. Some other binary instrument tools (e.g., Intel Pin) also offer such functionalities.
The text was updated successfully, but these errors were encountered:
Yes, it would be a good addition. You could add a "function_name" to the configuration and resolve it to a program counter here [1]. To resolve this, you will need to load the binary file and extract the exported functions using the Vmi plugin [2]. The vmi::ExecutableFile class lets you extract exported functions (works only for Windows PE files currently [3]).
Hi,
I am reading the document from
http://s2e.systems/docs/Howtos/LuaInstrumentation.html
It demonstrates an example on instrumenting a function by its address. I was wondering if the same goal can
be achieved with a symbol name. It will be a very useful feature for us to analyze some binaries with debugging information included. Some other binary instrument tools (e.g., Intel Pin) also offer such functionalities.
The text was updated successfully, but these errors were encountered: