Skip to content

pcap improvements #12544

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions salt/pcap/config.sls
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,6 @@ stenoca:
- user: 941
- group: 939

pcapdir:
file.directory:
- name: /nsm/pcap
- user: 941
- group: 941
- makedirs: True

pcaptmpdir:
file.directory:
- name: /nsm/pcaptmp
Expand Down
9 changes: 9 additions & 0 deletions salt/pcap/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,12 @@ include:
{% else %}
- pcap.disabled
{% endif %}

# This directory needs to exist regardless of whether STENO is enabled or not, in order for
# Sensoroni to be able to look at old steno PCAP data
pcapdir:
file.directory:
- name: /nsm/pcap
- user: 941
- group: 941
- makedirs: True
3 changes: 0 additions & 3 deletions salt/sensoroni/enabled.sls
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ so-sensoroni:
- /opt/so/conf/sensoroni/sensoroni.json:/opt/sensoroni/sensoroni.json:ro
- /opt/so/conf/sensoroni/analyzers:/opt/sensoroni/analyzers:rw
- /opt/so/log/sensoroni:/opt/sensoroni/logs:rw
{% if GLOBALS.pcap_engine == "SURICATA" %}
- /nsm/suripcap/:/nsm/suripcap:rw
- /nsm/suripcaptmp:/nsm/suripcaptmp:rw
{% endif %}
{% if DOCKER.containers['so-sensoroni'].custom_bind_mounts %}
{% for BIND in DOCKER.containers['so-sensoroni'].custom_bind_mounts %}
- {{ BIND }}
Expand Down
12 changes: 1 addition & 11 deletions salt/sensoroni/files/sensoroni.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,19 @@
"statickeyauth": {
"apiKey": "{{ GLOBALS.sensoroni_key }}"
{% if GLOBALS.is_sensor %}
{% from 'pcap/config.map.jinja' import PCAPMERGED %}
{% from 'suricata/map.jinja' import SURICATAMERGED %}
{# if PCAPMERGED.enabled is true then we know that steno is the pcap engine #}
{# if it is false, then user has steno disabled in ui or has selected suricata for pcap engine #}
{%- if PCAPMERGED.enabled %}
},
"stenoquery": {
"executablePath": "/opt/sensoroni/scripts/stenoquery.sh",
"pcapInputPath": "/nsm/pcap",
"pcapOutputPath": "/nsm/pcapout"
}
{%- elif GLOBALS.pcap_engine == "SURICATA" and SURICATAMERGED.enabled %}
},
"suriquery": {
"executablePath": "/opt/sensoroni/scripts/suriquery.sh",
"pcapInputPath": "/nsm/suripcap",
"pcapOutputPath": "/nsm/pcapout",
"pcapMaxCount": {{ SENSORONIMERGED.config.suripcap.pcapMaxCount }}
}
{% endif %}
{%- else %}
}
{%- endif %}
}
}
}
}
5 changes: 0 additions & 5 deletions salt/suricata/enabled.sls
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
include:
- suricata.config
- suricata.sostatus
{% if GLOBALS.pcap_engine == "SURICATA" %}
- suricata.pcap
{% endif %}

so-suricata:
docker_container.running:
Expand All @@ -36,9 +33,7 @@ so-suricata:
- /nsm/suricata/:/nsm/:rw
- /nsm/suricata/extracted:/var/log/suricata//filestore:rw
- /opt/so/conf/suricata/bpf:/etc/suricata/bpf:ro
{% if GLOBALS.pcap_engine == "SURICATA" %}
- /nsm/suripcap/:/nsm/suripcap:rw
{% endif %}
{% if DOCKER.containers['so-suricata'].custom_bind_mounts %}
{% for BIND in DOCKER.containers['so-suricata'].custom_bind_mounts %}
- {{ BIND }}
Expand Down
1 change: 1 addition & 0 deletions salt/suricata/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
{% from 'suricata/map.jinja' import SURICATAMERGED %}

include:
- suricata.pcap
{% if SURICATAMERGED.enabled and GLOBALS.role != 'so-import' %}
- suricata.enabled
{% elif GLOBALS.role == 'so-import' %}
Expand Down
10 changes: 8 additions & 2 deletions salt/suricata/pcap.sls
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{% from 'vars/globals.map.jinja' import GLOBALS %}
{% from 'suricata/map.jinja' import SURICATAMERGED %}

# This directory needs to exist regardless of whether SURIPCAP is enabled or not, in order for
# Sensoroni to be able to look at old Suricata PCAP data
suripcapdir:
file.directory:
- name: /nsm/suripcap
- user: 940
- group: 939
- mode: 755
- mode: 775
- makedirs: True

{% if GLOBALS.pcap_engine == "SURICATA" %}

{# there should only be 1 interface in af-packet so we can just reference the first list item #}
{% for i in range(1, SURICATAMERGED.config['af-packet'][0].threads + 1) %}

Expand All @@ -17,6 +21,8 @@ suripcapthread{{i}}dir:
- name: /nsm/suripcap/{{i}}
- user: 940
- group: 939
- mode: 755
- mode: 775

{% endfor %}

{% endif %}