mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-02-07 15:54:27 +01:00
Merge pull request #9639 from Security-Onion-Solutions/kilo
auto extract source/dest IP on case related event attachments; improve so-verify stream to console
This commit is contained in:
@@ -1020,6 +1020,9 @@ soc:
|
||||
cacheMs: 300000
|
||||
verifyCert: false
|
||||
casesEnabled: true
|
||||
extractCommonObservables:
|
||||
- source.ip
|
||||
- destination.ip
|
||||
timeoutMs: 300000
|
||||
timeShiftMs: 120000
|
||||
defaultDurationMs: 1800000
|
||||
|
||||
@@ -115,7 +115,7 @@ so-soc:
|
||||
{%- for SN, SNDATA in salt['pillar.get']('nodestab', {}).items() %}
|
||||
- {{ SN.split('_')|first }}:{{ SNDATA.ip }}
|
||||
{%- endfor %}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
- port_bindings:
|
||||
{% for BINDING in DOCKER.containers['so-soc'].port_bindings %}
|
||||
- {{ BINDING }}
|
||||
|
||||
@@ -69,6 +69,9 @@ soc:
|
||||
description: Set to true if the SOC case management module, natively integrated with Elasticsearch, should be enabled.
|
||||
global: True
|
||||
advanced: True
|
||||
extractCommonObservables:
|
||||
description: List of indexed fields to automatically extract into a case observable, when attaching related events to a case.
|
||||
global: True
|
||||
timeShiftMs:
|
||||
description: Duration (in milliseconds) to further expand the PCAP time range when querying PCAP data related to an event. This duration is added to the normal duration value (see defaultDurationMs).
|
||||
global: True
|
||||
|
||||
@@ -2383,9 +2383,10 @@ wait_for_salt_minion() {
|
||||
|
||||
verify_setup() {
|
||||
info "Verifying setup"
|
||||
output=$(./so-verify "$setup_type" 2>&1)
|
||||
set -o pipefail
|
||||
./so-verify "$setup_type" 2>&1 | tee -a $setup_log
|
||||
result=$?
|
||||
echo "$output" >> "$setup_log"
|
||||
set +o pipefail
|
||||
if [[ $result -eq 0 ]]; then
|
||||
whiptail_setup_complete
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user