summaryrefslogtreecommitdiff
path: root/csv
diff options
context:
space:
mode:
Diffstat (limited to 'csv')
-rwxr-xr-xcsv/critical.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/csv/critical.sh b/csv/critical.sh
index ab20b34..c6f1cae 100755
--- a/csv/critical.sh
+++ b/csv/critical.sh
@@ -47,6 +47,8 @@ def is_critical(row):
value = row.get(field, "")
if value and "CRITICAL" in value.upper():
return True
+ if value and "HIGH" in value.upper():
+ return True
return False