mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
110 lines
4.2 KiB
Bash
Executable File
110 lines
4.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
{%- import_yaml 'elasticfleet/defaults.yaml' as ELASTICFLEETDEFAULTS %}
|
|
{% from 'vars/globals.map.jinja' import GLOBALS %}
|
|
{%- set SUPPORTED_PACKAGES = salt['pillar.get']('elasticfleet:packages', default=ELASTICFLEETDEFAULTS.elasticfleet.packages, merge=True) %}
|
|
|
|
if [ ! -f /opt/so/state/estemplates.txt ]; then
|
|
echo "State file /opt/so/state/estemplates.txt not found. Running so-elasticsearch-templates-load."
|
|
|
|
. /usr/sbin/so-common
|
|
|
|
{% if GLOBALS.role != 'so-heavynode' %}
|
|
if [ -f /usr/sbin/so-elastic-fleet-common ]; then
|
|
. /usr/sbin/so-elastic-fleet-common
|
|
fi
|
|
{% endif %}
|
|
|
|
default_conf_dir=/opt/so/conf
|
|
|
|
# Define a default directory to load pipelines from
|
|
ELASTICSEARCH_TEMPLATES="$default_conf_dir/elasticsearch/templates/"
|
|
|
|
{% if GLOBALS.role == 'so-heavynode' %}
|
|
file="/opt/so/conf/elasticsearch/templates/index/so-common-template.json"
|
|
{% else %}
|
|
file="/usr/sbin/so-elastic-fleet-common"
|
|
{% endif %}
|
|
|
|
if [ -f "$file" ]; then
|
|
# Wait for ElasticSearch to initialize
|
|
echo -n "Waiting for ElasticSearch..."
|
|
retry 240 1 "so-elasticsearch-query / -k --output /dev/null --silent --head --fail" || fail "Connection attempt timed out. Unable to connect to ElasticSearch. \nPlease try: \n -checking log(s) in /var/log/elasticsearch/\n -running 'sudo docker ps' \n -running 'sudo so-elastic-restart'"
|
|
{% if GLOBALS.role != 'so-heavynode' %}
|
|
SESSIONCOOKIE=$(curl -s -K /opt/so/conf/elasticsearch/curl.config -c - -X GET http://localhost:5601/ | grep sid | awk '{print $7}')
|
|
INSTALLED=$(elastic_fleet_package_is_installed {{ SUPPORTED_PACKAGES[0] }} )
|
|
if [ "$INSTALLED" != "installed" ]; then
|
|
echo
|
|
echo "Packages not yet installed."
|
|
echo
|
|
exit 0
|
|
fi
|
|
{% endif %}
|
|
|
|
cd ${ELASTICSEARCH_TEMPLATES}/component/ecs
|
|
|
|
echo "Loading ECS component templates..."
|
|
for i in *; do
|
|
TEMPLATE=$(echo $i | cut -d '.' -f1)
|
|
echo "$TEMPLATE-mappings"
|
|
retry 5 5 "so-elasticsearch-query _component_template/${TEMPLATE}-mappings -d@$i -XPUT | grep '{\"acknowledged\":true}'" || fail "Could not load template: $TEMPLATE-mappings"
|
|
done
|
|
echo
|
|
|
|
cd ${ELASTICSEARCH_TEMPLATES}/component/elastic-agent
|
|
|
|
echo "Loading Elastic Agent component templates..."
|
|
{% if GLOBALS.role == 'so-heavynode' %}
|
|
component_pattern="so-*"
|
|
{% else %}
|
|
component_pattern="*"
|
|
{% endif %}
|
|
for i in $component_pattern; do
|
|
TEMPLATE=${i::-5}
|
|
echo "$TEMPLATE"
|
|
retry 5 5 "so-elasticsearch-query _component_template/$TEMPLATE -d@$i -XPUT | grep '{\"acknowledged\":true}'" || fail "Could not load template: $TEMPLATE"
|
|
done
|
|
echo
|
|
|
|
# Load SO-specific component templates
|
|
cd ${ELASTICSEARCH_TEMPLATES}/component/so
|
|
|
|
echo "Loading Security Onion component templates..."
|
|
for i in *; do
|
|
TEMPLATE=$(echo $i | cut -d '.' -f1);
|
|
echo "$TEMPLATE"
|
|
retry 5 5 "so-elasticsearch-query _component_template/$TEMPLATE -d@$i -XPUT | grep '{\"acknowledged\":true}'" || fail "Could not load template: $TEMPLATE"
|
|
done
|
|
echo
|
|
|
|
# Load SO index templates
|
|
cd ${ELASTICSEARCH_TEMPLATES}/index
|
|
|
|
echo "Loading Security Onion index templates..."
|
|
shopt -s extglob
|
|
{% if GLOBALS.role == 'so-heavynode' %}
|
|
pattern="!(*1password*|*aws*|*azure*|*cloudflare*|*elastic_agent*|*fim*|*github*|*google*|*osquery*|*system*|*windows*)"
|
|
{% else %}
|
|
pattern="*"
|
|
{% endif %}
|
|
for i in $pattern; do
|
|
TEMPLATE=${i::-14}
|
|
echo "$TEMPLATE"
|
|
retry 5 5 "so-elasticsearch-query _index_template/$TEMPLATE -d@$i -XPUT | grep '{\"acknowledged\":true}'" || fail "Could not load template: $TEMPLATE"
|
|
done
|
|
else
|
|
{% if GLOBALS.role == 'so-heavynode' %}
|
|
echo "Common template does not exist. Exiting..."
|
|
{% else %}
|
|
echo "Elastic Fleet not configured. Exiting..."
|
|
{% endif %}
|
|
exit 0
|
|
fi
|
|
|
|
cd - >/dev/null
|
|
|
|
touch /opt/so/state/estemplates.txt
|