Created
October 13, 2021 20:56
-
-
Save Cyb3rWard0g/bcf1514cc340197f0076bf1da8954077 to your computer and use it in GitHub Desktop.
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
<Sysmon schemaversion="4.70"> | |
<EventFiltering> | |
<!-- Event ID 1 == ProcessCreate. Log all newly created processes --> | |
<RuleGroup name="" groupRelation="or"> | |
<ProcessCreate onmatch="exclude"/> | |
</RuleGroup> | |
<!-- Event ID 3 == NetworkConnect Detected. Log all network connections --> | |
<RuleGroup name="" groupRelation="or"> | |
<NetworkConnect onmatch="exclude"/> | |
</RuleGroup> | |
<!-- Event ID 5 == ProcessTerminate. Log all processes terminated --> | |
<RuleGroup name="" groupRelation="or"> | |
<ProcessTerminate onmatch="exclude"/> | |
</RuleGroup> | |
<!-- Event ID 9 == RawAccessRead. Log all raw access read --> | |
<RuleGroup name="" groupRelation="or"> | |
<RawAccessRead onmatch="exclude"/> | |
</RuleGroup> | |
<!-- Event ID 10 == ProcessAccess. Log all open process operations --> | |
<RuleGroup name="" groupRelation="or"> | |
<ProcessAccess onmatch="exclude"/> | |
</RuleGroup> | |
<!-- Event ID 11 == FileCreate. Log every file creation --> | |
<RuleGroup name="" groupRelation="or"> | |
<FileCreate onmatch="exclude"/> | |
</RuleGroup> | |
<!--Event ID 23 == FileDelete. Log all files being deleted --> | |
<RuleGroup name="" groupRelation="or"> | |
<FileDelete onmatch="exclude"/> | |
</RuleGroup> | |
</EventFiltering> | |
</Sysmon> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment