How to enable the always-on analysis function in settings #5859
-
I don't want to click manually every time. I want it to be analyzed automatically. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
This is how you get infinite analysis loops that can't be stopped. I'm not sure this is something we will ever add as a setting but I will discuss it with others this week. That said, there is an API on the function you can use so if you REALLY want to, you can write a snippet to trigger the override for all functions. EDIT: You can actually get the behavior requested by setting |
Beta Was this translation helpful? Give feedback.
This is how you get infinite analysis loops that can't be stopped. I'm not sure this is something we will ever add as a setting but I will discuss it with others this week.
That said, there is an API on the function you can use so if you REALLY want to, you can write a snippet to trigger the override for all functions.
https://api.binary.ninja/binaryninja.function-module.html#binaryninja.function.Function.analysis_skipped
EDIT: You can actually get the behavior requested by setting
analysis.limits.maxFunctionUpdateCount = 0
in settings. However, this will result in infinite analysis that never ends and therefore isn't a good option.