From ee2f7c50e885c5e6de23f91d192a4a4f520c916e Mon Sep 17 00:00:00 2001 From: Mike Stewart <2521245+mike-stewart@users.noreply.github.com> Date: Tue, 1 Feb 2022 17:47:05 -0400 Subject: [PATCH] Potential fix for falcosecurity/falco#1884 Signed-off-by: Mike Stewart --- userspace/engine/lua/rule_loader.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/userspace/engine/lua/rule_loader.lua b/userspace/engine/lua/rule_loader.lua index 0d719494..4ec61b40 100644 --- a/userspace/engine/lua/rule_loader.lua +++ b/userspace/engine/lua/rule_loader.lua @@ -59,10 +59,10 @@ end -- Permissive for case and for common abbreviations. priorities = { - Emergency=0, Alert=1, Critical=2, Error=3, Warning=4, Notice=5, Informational=5, Debug=7, - emergency=0, alert=1, critical=2, error=3, warning=4, notice=5, informational=5, debug=7, - EMERGENCY=0, ALERT=1, CRITICAL=2, ERROR=3, WARNING=4, NOTICE=5, INFORMATIONAL=5, DEBUG=7, - INFO=5, info=5 + Emergency=0, Alert=1, Critical=2, Error=3, Warning=4, Notice=5, Informational=6, Debug=7, + emergency=0, alert=1, critical=2, error=3, warning=4, notice=5, informational=6, debug=7, + EMERGENCY=0, ALERT=1, CRITICAL=2, ERROR=3, WARNING=4, NOTICE=5, INFORMATIONAL=6, DEBUG=7, + INFO=6, info=6 } --[[