mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-07 01:25:21 +00:00
fix taxonomies name
This commit is contained in:
parent
1c4329fc5f
commit
0eebd4afa1
@ -28,14 +28,14 @@ class ClamAnalyzer(Analyzer):
|
||||
# return raw
|
||||
def summary(self, raw):
|
||||
taxonomies = []
|
||||
namespace = "Clamscan"
|
||||
namespace = "ClamAV"
|
||||
predicate = "Match"
|
||||
|
||||
if raw["results"]:
|
||||
value = "{} rule matched".format(raw["results"])
|
||||
value = "{}".format(raw["results"])
|
||||
level = "malicious"
|
||||
else:
|
||||
value = "No matched rules"
|
||||
value = "No matches"
|
||||
level = "safe"
|
||||
|
||||
taxonomies.append(self.build_taxonomy(level, namespace, predicate, value))
|
||||
|
Loading…
Reference in New Issue
Block a user