From 34641b15e461638f22d1b51eb49791dfd3f67cd6 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Fri, 4 Nov 2022 12:33:25 -0400 Subject: Fix setting typo --- docs/guide/settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/guide/settings.md b/docs/guide/settings.md index 4e0afe45..b4ba23cc 100644 --- a/docs/guide/settings.md +++ b/docs/guide/settings.md @@ -43,7 +43,7 @@ All settings are uniquely identified with an identifier string. Identifiers are |analysis|Keep Dead Code Branches|Keep unreachable code branches and associated basic blocks in HLIL.|`boolean`|`False`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.experimental.keepDeadCodeBranches| |analysis|Return Value Propagation|Propagate and use constant return values from functions in the caller in order to simplify downstream expressions.|`boolean`|`True`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.experimental.returnValuePropagation| |analysis|Translate Windows CFG Calls|Attempt to identify and translate calls to `_guard_dispatch_icall_nop` to improve analysis of control flow guard binaries.|`boolean`|`True`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.experimental.translateWindowsCfgCalls| -|analysis|Extract Types From Manged Names|Attempt to extract types from mangled names using the demangler. This can lead to recovering inaccurate parameters.|`boolean`|`True`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.extractTypesFromMangedNames| +|analysis|Extract Types From Mangled Names|Attempt to extract types from mangled names using the demangler. This can lead to recovering inaccurate parameters.|`boolean`|`True`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.extractTypesFromMangledNames| |analysis|Always Analyze Indirect Branches|When using faster analysis modes, perform full analysis of functions containing indirect branches.|`boolean`|`True`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.forceIndirectBranches| |analysis|Aggressive Condition Complexity Removal Threshold|High Level IL tuning parameter.|`number`|`64`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.hlil.aggressiveConditionComplexityRemovalThreshold| |analysis|Max Condition Complexity|High Level IL tuning parameter.|`number`|`1024`|[`SettingsProjectScope`, `SettingsResourceScope`, `SettingsUserScope`]|analysis.hlil.maxConditionComplexity| -- cgit v1.3.1