-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Route sep syslog to correct sub-sourcetype
- Loading branch information
Mahir Chavda
committed
May 7, 2020
1 parent
9d01492
commit 474ffa0
Showing
4 changed files
with
234 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,51 @@ | ||
| filter f_symantec_ep { | ||
| program("SymantecServer") | ||
| }; | ||
|
|
||
| filter f_symantec_ep_proactive { | ||
| message(',Detection\stype:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_risk { | ||
| message(',Risk\sname:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_agt_system { | ||
| message(',Category:\s\d+,') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_packet { | ||
| message(',(?:Inbound|Outbound|Unknown),Application:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_traffic { | ||
| message(',(?:Inbound|Outbound|Unknown),Begin(?:\sTime)?:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_security { | ||
| message('CIDS\sSignature\sSubID:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_scan { | ||
| message('Scan\sID:\s\d+') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_behavior { | ||
| message('Begin(?:\sTime)?:\s[^,]*,End(?:\sTime)?:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_policy { | ||
| message('Admin:\s[^,]+,.*[Pp]olicy') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_admin { | ||
| message('Domain(?:\sName)?:\s[^,]{0,25},Admin:') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_agent { | ||
| message('(?:,The\smanagement\sserver|,The\sclient)') | ||
| }; | ||
|
|
||
| filter f_symantec_ep_scm_system { | ||
| message('Site:\s[^,]+,Server(?:\sName)?:\s[^,]+,') | ||
| }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters