Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <Sysmon schemaversion="1.0">
  2. <Configuration>
  3. <!-- Capture MD5 Hashes -->
  4. <Hashing>SHA1</Hashing>
  5. <!-- Enable Network Logging -->
  6. <Network />
  7. <!-- Enable Image Load Logging -->
  8. <ImageLoading/>
  9. </Configuration>
  10. <Rules>
  11. <!-- Include all Processes EXCEPT certain processes that cause high event volumes -->
  12. <!-- This will prevent the logging of processes located in c:\Program Files\Google or
  13. anything with Symantec in the path -->
  14. <ProcessCreate default="include">
  15. <Image condition="begin with">"C:\Program Files\Google"</Image>
  16. <Image condition="contains">Symantec</Image>
  17. </ProcessCreate>
  18. <!-- Do not log network connections of a certain address-->
  19. <NetworkConnect default="include">
  20. <DestinationHostname condition="end with">jon.glass</DestinationHostname>
  21. </NetworkConnect>
  22. </Rules>
  23. </Sysmon>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement