mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-06-13 21:59:46 +02:00
14 lines
1.1 KiB
Bash
Executable File
14 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
. /usr/sbin/so-common
|
|
wait_for_web_response "http://localhost:5601/api/spaces/space/default" "default" 300 "curl -K /opt/so/conf/elasticsearch/curl.config"
|
|
## This hackery will be removed if using Elastic Auth ##
|
|
|
|
# Let's snag a cookie from Kibana
|
|
SESSIONCOOKIE=$(curl -K /opt/so/conf/elasticsearch/curl.config -c - -X GET http://localhost:5601/ | grep sid | awk '{print $7}')
|
|
|
|
# Disable certain Features from showing up in the Kibana UI
|
|
echo
|
|
echo "Setting up default Kibana Space:"
|
|
curl -K /opt/so/conf/elasticsearch/curl.config -b "sid=$SESSIONCOOKIE" -L -X PUT "localhost:5601/api/spaces/space/default" -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d' {"id":"default","name":"Default","disabledFeatures":["ml","enterpriseSearch","logs","infrastructure","apm","uptime","monitoring","stackAlerts","actions","securitySolutionCasesV3","inventory","dataQuality","searchSynonyms","searchQueryRules","enterpriseSearchApplications","enterpriseSearchAnalytics","securitySolutionTimeline","securitySolutionNotes","securitySolutionRulesV1","entityManager","streams","cloudConnect","slo"]} ' >> /opt/so/log/kibana/misc.log
|
|
echo
|