mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-24 09:53:12 +01:00
15 lines
397 B
Plaintext
15 lines
397 B
Plaintext
{% set enabled_sids = salt['pillar.get']('idstools:sids:enabled', {}) -%}
|
|
# idstools-rulecat - enable.conf
|
|
|
|
# Example of enabling a rule by signature ID (gid is optional).
|
|
# 1:2019401
|
|
# 2019401
|
|
|
|
# Example of enabling a rule by regular expression.
|
|
# - All regular expression matches are case insensitive.
|
|
# re:hearbleed
|
|
# re:MS(0[7-9]|10)-\d+
|
|
|
|
{%- for sid in enabled_sids %}
|
|
{{ sid }}
|
|
{%- endfor %} |