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
{{ message }}
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
Allow for targeting functions based on the calling function. For example, if our dirty function is fread() and the function we care about is AddFontResourceEx() , add the ability to only target when fread() is called from AddFontResourceEx(). Not sure if dynamorio support this, may have to unwind the stack and find calling functions. This is related to #42 .
The text was updated successfully, but these errors were encountered:
DynamoRIO has a couple of open issues for walking back call stacks. It might not be impossible to get decent results, but would likely require a lot of effort.
Allow for targeting functions based on the calling function. For example, if our dirty function is
fread()
and the function we care about isAddFontResourceEx()
, add the ability to only target whenfread()
is called fromAddFontResourceEx()
. Not sure if dynamorio support this, may have to unwind the stack and find calling functions. This is related to #42 .The text was updated successfully, but these errors were encountered: