summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrollsafe <rollsafe@users.noreply.github.com>2019-08-06 08:18:09 -0400
committerStephen Tong <rollsafe@users.noreply.github.com>2019-11-24 19:15:51 -0500
commit30ec04788bf661e3fcba4efe212deca7f610cddc (patch)
tree2db993d6c033db7dd0f13774132074fa6e16d36a
parent45adbe87de13a9ca6a359c48fbcc598e63af6ff9 (diff)
Update triage files.cpp example
-rw-r--r--examples/triage/files.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/triage/files.cpp b/examples/triage/files.cpp
index c80f7bc8..ef640aa8 100644
--- a/examples/triage/files.cpp
+++ b/examples/triage/files.cpp
@@ -94,16 +94,19 @@ void TriageFilePicker::openSelectedFiles()
if (linearSweepMode == "none")
{
settings->Set("analysis.linearSweep.autorun", false, data);
+ settings->Set("analysis.signatureMatcher.autorun", false, data);
}
else if (linearSweepMode == "partial")
{
settings->Set("analysis.linearSweep.autorun", true, data);
settings->Set("analysis.linearSweep.controlFlowGraph", false, data);
+ settings->Set("analysis.signatureMatcher.autorun", true, data);
}
else if (linearSweepMode == "full")
{
settings->Set("analysis.linearSweep.autorun", true, data);
settings->Set("analysis.linearSweep.controlFlowGraph", true, data);
+ settings->Set("analysis.signatureMatcher.autorun", true, data);
}
}
}