Skip to content

Commit

Permalink
fix: previously ignored category orange now is malicious
Browse files Browse the repository at this point in the history
  • Loading branch information
emalderson committed Jul 28, 2024
1 parent 0400142 commit b245899
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 b245899

Please sign in to comment.