mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
12 lines
331 B
Plaintext
12 lines
331 B
Plaintext
{%- set modify_sids = salt['pillar.get']('idstools:sids:modify', {}) -%}
|
|
# idstools-rulecat - modify.conf
|
|
|
|
# Format: <sid> "<from>" "<to>"
|
|
|
|
# Example changing the seconds for rule 2019401 to 3600.
|
|
#2019401 "seconds \d+" "seconds 3600"
|
|
{%- if modify_sids != None %}
|
|
{%- for sid in modify_sids %}
|
|
{{ sid }}
|
|
{%- endfor %}
|
|
{%- endif %} |