Ei kuvausta

soc-ioc-cdb-rules.xml 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!--
  2. SOC IOC CDB Lookup Rules
  3. ========================
  4. These rules fire when a network field matches an entry in the threat-intel CDB lists
  5. maintained by soc-integrator (/wazuh/ioc-lists/refresh).
  6. Lists (compiled by wazuh-analysisd at startup/restart):
  7. etc/lists/malicious-ioc/malicious-ip — known-bad IPs (feodo, threatfox, local hits)
  8. etc/lists/malicious-ioc/malicious-domains — known-bad domains (threatfox, urlhaus, local hits)
  9. etc/lists/malicious-ioc/malware-hashes — malware SHA256 hashes (bazaar, threatfox, local hits)
  10. Rule IDs: 110600–110605
  11. Level : 10 (above log_alert_level=3, below critical=12)
  12. -->
  13. <group name="soc_mvp,threat_intel,ioc,cdb,">
  14. <!-- ── IP: FortiGate source IP matched threat-intel list ── -->
  15. <rule id="110600" level="10">
  16. <if_sid>81603</if_sid>
  17. <list field="srcip" lookup="match_key">etc/lists/malicious-ioc/malicious-ip</list>
  18. <description>CDB: FortiGate source IP matched threat-intel list</description>
  19. <group>soc_prod,a2,ioc,threat_intel,cdb,</group>
  20. <mitre>
  21. <id>T1071</id>
  22. </mitre>
  23. </rule>
  24. <!-- ── IP: FortiGate destination IP matched threat-intel list ── -->
  25. <rule id="110601" level="10">
  26. <if_sid>81603</if_sid>
  27. <list field="dstip" lookup="match_key">etc/lists/malicious-ioc/malicious-ip</list>
  28. <description>CDB: FortiGate destination IP matched threat-intel list</description>
  29. <group>soc_prod,a2,ioc,threat_intel,cdb,</group>
  30. <mitre>
  31. <id>T1071</id>
  32. </mitre>
  33. </rule>
  34. <!-- ── Domain: DNS query matched malicious-domains list ── -->
  35. <!-- Parent: 100250 (soc-prod-dns decoder, extracts url from query= field) -->
  36. <rule id="110602" level="10">
  37. <if_sid>100250</if_sid>
  38. <list field="url" lookup="match_key">etc/lists/malicious-ioc/malicious-domains</list>
  39. <description>CDB: DNS query matched malicious-domains threat-intel list</description>
  40. <group>soc_prod,a1,ioc,threat_intel,cdb,dns,</group>
  41. <mitre>
  42. <id>T1071.004</id>
  43. </mitre>
  44. </rule>
  45. </group>