How to get possible values of a stack var? #4285
-
According to the api documentation, the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can use
|
Beta Was this translation helpful? Give feedback.
You can use
LowLevelILInstruction.get_possible_stack_contents_after
/MediumLevelILInstruction.get_possible_stack_contents_after
to find possible stack values after an LLIL/MLIL instruction. You can useFunction.get_low_level_il_here
to look up an LLIL instruction at whatever address you want to inspect.