Skip to content

Commit

Permalink
Merge pull request #1270 from emalderson/fix_KasperskyThreatIntellige…
Browse files Browse the repository at this point in the history
…ncePortal

KasperskyTIP fix: previously ignored category orange now is malicious
  • Loading branch information
nusantara-self authored Sep 18, 2024
2 parents 89a9f65 + b245899 commit c2fcae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/KasperskyTIP/KasperskyTIP.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def summary(self, raw):
level = "safe"
elif value == "Yellow":
level = "suspicious"
elif value == "Red":
elif value in ["Orange", "Red"]:
level = "malicious"
taxonomies.append(self.build_taxonomy(level, namespace, predicate, value))
return {'taxonomies': taxonomies}
Expand Down

0 comments on commit c2fcae3

Please sign in to comment.