mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 09:42:46 +01:00
Merge pull request #9852 from Security-Onion-Solutions/kilo
Remove FleetDM tool from SOC instead of deactivating it; generate SRV key during setup
This commit is contained in:
@@ -1091,11 +1091,6 @@ soc:
|
|||||||
icon: fa-external-link-alt
|
icon: fa-external-link-alt
|
||||||
target: so-playbook
|
target: so-playbook
|
||||||
link: /playbook/projects/detection-playbooks/issues/
|
link: /playbook/projects/detection-playbooks/issues/
|
||||||
- name: toolFleet
|
|
||||||
description: toolFleetHelp
|
|
||||||
icon: fa-external-link-alt
|
|
||||||
target: so-fleet
|
|
||||||
link: /fleet/
|
|
||||||
- name: toolNavigator
|
- name: toolNavigator
|
||||||
description: toolNavigatorHelp
|
description: toolNavigatorHelp
|
||||||
icon: fa-external-link-alt
|
icon: fa-external-link-alt
|
||||||
|
|||||||
@@ -29,8 +29,6 @@
|
|||||||
{% do SOCMERGED.server.client.inactiveTools.append('toolPlaybook') %}
|
{% do SOCMERGED.server.client.inactiveTools.append('toolPlaybook') %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% do SOCMERGED.server.client.inactiveTools.append('toolFleet') %}
|
|
||||||
|
|
||||||
{% set standard_actions = SOCMERGED.pop('actions') %}
|
{% set standard_actions = SOCMERGED.pop('actions') %}
|
||||||
{% if pillar.global.endgamehost is defined %}
|
{% if pillar.global.endgamehost is defined %}
|
||||||
{% set endgame_dict = {
|
{% set endgame_dict = {
|
||||||
|
|||||||
@@ -47,6 +47,11 @@ soc:
|
|||||||
global: True
|
global: True
|
||||||
advanced: True
|
advanced: True
|
||||||
server:
|
server:
|
||||||
|
srvKey:
|
||||||
|
description: Unique key for protecting the integrity of user submitted data via the web browser.
|
||||||
|
global: True
|
||||||
|
sensitive: True
|
||||||
|
advanced: True
|
||||||
maxPacketCount:
|
maxPacketCount:
|
||||||
description: Maximum number of packets to show in the PCAP viewer. Larger values can cause more resource utilization on both the SOC server and the browser.
|
description: Maximum number of packets to show in the PCAP viewer. Larger values can cause more resource utilization on both the SOC server and the browser.
|
||||||
global: True
|
global: True
|
||||||
|
|||||||
@@ -1239,6 +1239,7 @@ generate_passwords(){
|
|||||||
SENSORONIKEY=$(get_random_value)
|
SENSORONIKEY=$(get_random_value)
|
||||||
KRATOSKEY=$(get_random_value)
|
KRATOSKEY=$(get_random_value)
|
||||||
REDISPASS=$(get_random_value)
|
REDISPASS=$(get_random_value)
|
||||||
|
SOCSRVKEY=$(get_random_value 64)
|
||||||
}
|
}
|
||||||
|
|
||||||
generate_interface_vars() {
|
generate_interface_vars() {
|
||||||
@@ -1374,7 +1375,11 @@ idstools_pillar() {
|
|||||||
soc_pillar() {
|
soc_pillar() {
|
||||||
title "Creating the SOC pillar"
|
title "Creating the SOC pillar"
|
||||||
touch $adv_soc_pillar_file
|
touch $adv_soc_pillar_file
|
||||||
touch $soc_pillar_file
|
printf '%s\n'\
|
||||||
|
"soc:"\
|
||||||
|
" server:"\
|
||||||
|
" srvKey: '$SOCSRVKEY'"\
|
||||||
|
"" > "$soc_pillar_file"
|
||||||
}
|
}
|
||||||
|
|
||||||
telegraf_pillar() {
|
telegraf_pillar() {
|
||||||
|
|||||||
Reference in New Issue
Block a user