-
I only need to get the disassembly and control flow of some functions. I tried for f in bv.functions:
bv.remove_function(f)
bv.add_function(0x100001234)
bv.set_analysis_hold(False) However as soon as I disable analysis hold, all of the functions come back. I think it might processes |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is possible however the analysis hold must be left in the enabled state during the entire process.
With the analysis hold enabled, the top level analysis pipeline remains in the hold state and no other functions are analyzed. This allows manual analysis of a small subset of the binary. It's worth noting that disassembly, LLIL, MLIL, and HLIL are all generated for the function in the default analysis mode. By adjusting the |
Beta Was this translation helpful? Give feedback.
This is possible however the analysis hold must be left in the enabled state during the entire process.
With the analysis hold enabled, the top level analysis pipeline remains in the hold state and no other functions are analyzed. This allows manual analysis of a small subset of the binary. It's worth noting that disassembly, LLIL, MLIL, and HLIL are all generated for the function in the default analysis mode. By adjusting the
analysis.mode
setting, it is possible to limit the single function analysis to just dis…