mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
95 lines
2.3 KiB
Bash
Executable File
95 lines
2.3 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.
|
|
|
|
{%- set NODEIP = salt['pillar.get']('host:mainip', '') %}
|
|
. /usr/sbin/so-common
|
|
|
|
SKIP=0
|
|
#########################################
|
|
# Options
|
|
#########################################
|
|
usage()
|
|
{
|
|
cat <<EOF
|
|
Security Onion Elastic Clear
|
|
Options:
|
|
-h This message
|
|
-y Skip interactive mode
|
|
EOF
|
|
}
|
|
while getopts "h:y" OPTION
|
|
do
|
|
case $OPTION in
|
|
h)
|
|
usage
|
|
exit 0
|
|
;;
|
|
|
|
y)
|
|
SKIP=1
|
|
;;
|
|
*)
|
|
usage
|
|
exit 0
|
|
;;
|
|
esac
|
|
done
|
|
if [ $SKIP -ne 1 ]; then
|
|
# List indices
|
|
echo
|
|
curl -K /opt/so/conf/elasticsearch/curl.config -k -L https://{{ NODEIP }}:9200/_cat/indices?v
|
|
echo
|
|
# Inform user we are about to delete all data
|
|
echo
|
|
echo "This script will delete all data (documents, indices, etc.) in the Elasticsearch database."
|
|
echo
|
|
echo "If you would like to proceed, please type "AGREE" and hit ENTER."
|
|
echo
|
|
# Read user input
|
|
read INPUT
|
|
if [ "$INPUT" != "AGREE" ] ; then exit 0; fi
|
|
fi
|
|
|
|
# Check to see if Logstash are running
|
|
LS_ENABLED=$(so-status | grep logstash)
|
|
EA_ENABLED=$(so-status | grep elastalert)
|
|
|
|
if [ ! -z "$LS_ENABLED" ]; then
|
|
|
|
/usr/sbin/so-logstash-stop
|
|
|
|
fi
|
|
|
|
if [ ! -z "$EA_ENABLED" ]; then
|
|
|
|
/usr/sbin/so-elastalert-stop
|
|
|
|
fi
|
|
|
|
# Delete data
|
|
echo "Deleting data..."
|
|
|
|
INDXS=$(curl -K /opt/so/conf/elasticsearch/curl.config -s -XGET -k -L https://{{ NODEIP }}:9200/_cat/indices?v | egrep 'logstash|elastalert|so-' | awk '{ print $3 }')
|
|
for INDX in ${INDXS}
|
|
do
|
|
curl -K /opt/so/conf/elasticsearch/curl.config-XDELETE -k -L https://"{{ NODEIP }}:9200/${INDX}" > /dev/null 2>&1
|
|
done
|
|
|
|
#Start Logstash
|
|
if [ ! -z "$LS_ENABLED" ]; then
|
|
|
|
/usr/sbin/so-logstash-start
|
|
|
|
fi
|
|
|
|
if [ ! -z "$EA_ENABLED" ]; then
|
|
|
|
/usr/sbin/so-elastalert-start
|
|
|
|
fi
|
|
|