Skip to content

Commit

Permalink
fix : match for Sophos XG Firewall that has device_name=SFW instead o…
Browse files Browse the repository at this point in the history
…f device=SFW (#2160)
  • Loading branch information
inspired authored and ikheifets-splunk committed Sep 6, 2023
1 parent 1a7faf8 commit 6fcc3ca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ block parser app-syslog-sophos_firewall_xg() {
application app-syslog-sophos_firewall_xg[sc4s-syslog] {
filter {
(
message("device=\"SFW\"" type(string) flags(substring)) and
message("device=\"SFW\"" type(string) flags(substring)) or
message("device_name=\"SFW\"" type(string) flags(substring)) and
message("log_type=" type(string) flags(substring))
);
};
Expand Down

0 comments on commit 6fcc3ca

Please sign in to comment.