move thread-scope features into the call-scope

This commit is contained in:
Yacine Elhamer
2023-08-06 18:12:29 +01:00
parent 8dc4adbb5e
commit f461f65a86

View File

@@ -189,13 +189,12 @@ SUPPORTED_FEATURES: Dict[str, Set] = {
capa.features.common.Regex,
capa.features.common.Characteristic("embedded pe"),
},
THREAD_SCOPE: {
capa.features.common.MatchedRule,
capa.features.common.Substring,
capa.features.common.Regex,
},
THREAD_SCOPE: set(),
CALL_SCOPE: {
capa.features.common.MatchedRule,
capa.features.common.Regex,
capa.features.common.String,
capa.features.common.Substring,
capa.features.insn.API,
capa.features.insn.Number,
},