Skip to content

Commit

Permalink
update risk level reference
Browse files Browse the repository at this point in the history
  • Loading branch information
pyth0n1c committed Sep 26, 2024
1 parent b488c22 commit a7b86ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contentctl/objects/detection_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def risk_score(self) -> int:
@property
def severity(self)->RiskSeverity:
if 0 <= self.risk_score <= 20:
return RiskSeverity.INFO
return RiskSeverity.INFORMATIONAL
elif 20 < self.risk_score <= 40:
return RiskSeverity.LOW
elif 40 < self.risk_score <= 60:
Expand Down

0 comments on commit a7b86ba

Please sign in to comment.