chopped of the old brush
This commit is contained in:
parent
9668eec414
commit
45c767a9ce
@ -1,3 +1,3 @@
|
|||||||
requests~=2.31.0
|
requests~=2.25.1
|
||||||
PyYAML~=6.0.1
|
PyYAML~=5.4.1
|
||||||
python-dotenv~=1.0.1
|
python-dotenv~=1.0.1
|
||||||
86
wazuh-notifier.py
Executable file
86
wazuh-notifier.py
Executable file
@ -0,0 +1,86 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# This script is free software.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2024, Rudi Klein.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it
|
||||||
|
# and/or modify it under the terms of the GNU General Public
|
||||||
|
# License (version 2) as published by the FSF - Free Software
|
||||||
|
# Foundation.
|
||||||
|
#
|
||||||
|
# This script is executed by the active response script (wazuh-active-response.py), which is triggered by rules firing.
|
||||||
|
#
|
||||||
|
# Discord is a voice, video and text communication service used by over a hundred million people to hang out and talk
|
||||||
|
# with their friends and communities. It allows for receiving message using webhooks.
|
||||||
|
# For more information: https://discord.com.
|
||||||
|
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
|
from wazuh_notifier_module import get_arguments
|
||||||
|
from wazuh_notifier_module import get_env
|
||||||
|
from wazuh_notifier_module import get_yaml_config
|
||||||
|
from wazuh_notifier_module import set_environment
|
||||||
|
from wazuh_notifier_module import set_time
|
||||||
|
from wazuh_notifier_module import threat_priority_mapping
|
||||||
|
|
||||||
|
# Setup the environment
|
||||||
|
|
||||||
|
# Get time value
|
||||||
|
now_message, now_logging = set_time()
|
||||||
|
|
||||||
|
# Get .env values
|
||||||
|
discord_webhook, ntfy_webhook = get_env()
|
||||||
|
|
||||||
|
# Get path values
|
||||||
|
wazuh_path, ar_path, config_path = set_environment()
|
||||||
|
|
||||||
|
|
||||||
|
# the POST builders for the targets. Prepares https and sends the request.
|
||||||
|
|
||||||
|
def discord_command(url, sender, destination, priority, message, tags, click):
|
||||||
|
x_message = (now_message +
|
||||||
|
"\n\n" + message + "\n\n" +
|
||||||
|
"Priority: " + priority + "\n" +
|
||||||
|
"Tags: " + tags + "\n\n" + click
|
||||||
|
)
|
||||||
|
data = {"username": sender, "embeds": [{"description": x_message, "title": destination}]}
|
||||||
|
|
||||||
|
requests.post(url, json=data)
|
||||||
|
|
||||||
|
|
||||||
|
def ntfy_command(url, sender, destination, priority, message, tags, click):
|
||||||
|
header = ""
|
||||||
|
if sender != "": header = header + '"Title"' + ": " + '"' + sender + '"' + ", "
|
||||||
|
if tags != "": header = header + '"Tags"' + ": " + '"' + tags + '"' + ", "
|
||||||
|
if click != "": header = header + '"Click"' + ": " + '"' + click + '"' + ", "
|
||||||
|
if priority != "": header = header + '"Priority"' + ": " + '"' + priority + '"'
|
||||||
|
header = json.loads("{" + header + "}")
|
||||||
|
x_message = now_message + "\n\n" + message
|
||||||
|
|
||||||
|
# todo POST the request **** NEEDS future TRY ****
|
||||||
|
requests.post(url + destination, data=x_message, headers=header)
|
||||||
|
|
||||||
|
|
||||||
|
# Get the YAML config if any
|
||||||
|
config: dict = get_yaml_config()
|
||||||
|
|
||||||
|
# Get the command line arguments
|
||||||
|
if get_arguments() is None:
|
||||||
|
url, sender, destination, message, priority, tags, click = "", "", "", "", "", "", ""
|
||||||
|
else:
|
||||||
|
url, sender, destination, priority, message, tags, click = get_arguments()
|
||||||
|
|
||||||
|
# Get the threat level from the event (message)
|
||||||
|
threat_level = message[message.find('Threat level:') + 13:message.find('Threat level:') + 15].replace(" ", "")
|
||||||
|
|
||||||
|
# Get the mapping between threat level (event) and priority (Discord/ntfy)
|
||||||
|
threat_priority = threat_priority_mapping(threat_level, config.get('np_1'), config.get('np_2'),
|
||||||
|
config.get('np_3'), config.get('np_4'), config.get('np_5'))
|
||||||
|
|
||||||
|
# Finally, execute the POST request
|
||||||
|
# discord_command(discord_webhook, sender, destination, priority, message, tags, click)
|
||||||
@ -2,10 +2,30 @@ import getopt
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
from os.path import join, dirname
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
|
||||||
|
def get_env():
|
||||||
|
try:
|
||||||
|
dotenv_path = join(dirname(__file__), '.env')
|
||||||
|
load_dotenv(dotenv_path)
|
||||||
|
if not os.path.isfile(dotenv_path):
|
||||||
|
raise Exception(dotenv_path, "file not found")
|
||||||
|
|
||||||
|
# Retrieve url from .env
|
||||||
|
discord_url = os.getenv("DISCORD_url")
|
||||||
|
ntfy_url = os.getenv("NTFY_url")
|
||||||
|
|
||||||
|
except Exception as err:
|
||||||
|
# output error, and return with an error code
|
||||||
|
print(str(Exception(err.args)))
|
||||||
|
exit(err)
|
||||||
|
|
||||||
|
return discord_url, ntfy_url
|
||||||
|
|
||||||
# Set structured timestamp for logging and discord/ntfy message.
|
# Set structured timestamp for logging and discord/ntfy message.
|
||||||
|
|
||||||
|
|
||||||
@ -25,7 +45,7 @@ def set_environment():
|
|||||||
wazuh_path = "/var/ossec"
|
wazuh_path = "/var/ossec"
|
||||||
# wazuh_path = os.path.abspath(os.path.join(__file__, "../../.."))
|
# wazuh_path = os.path.abspath(os.path.join(__file__, "../../.."))
|
||||||
ar_path = '{0}/logs/active-responses.log'.format(wazuh_path)
|
ar_path = '{0}/logs/active-responses.log'.format(wazuh_path)
|
||||||
config_path = '{0}/etc/wazuh-notifier-config.yaml'.format(wazuh_path)
|
config_path = 'wazuh-notifier-config.yaml'.format(wazuh_path)
|
||||||
|
|
||||||
return wazuh_path, ar_path, config_path
|
return wazuh_path, ar_path, config_path
|
||||||
|
|
||||||
@ -33,14 +53,13 @@ def set_environment():
|
|||||||
# Import configuration settings from wazuh-notifier-config.yaml
|
# Import configuration settings from wazuh-notifier-config.yaml
|
||||||
|
|
||||||
|
|
||||||
def import_config(key):
|
def import_config():
|
||||||
try:
|
try:
|
||||||
_, _, config_path = set_environment()
|
_, _, config_path = set_environment()
|
||||||
|
|
||||||
with open(config_path, 'r') as ntfier_config:
|
with open(config_path, 'r') as ntfier_config:
|
||||||
config: dict = yaml.safe_load(ntfier_config)
|
config: dict = yaml.safe_load(ntfier_config)
|
||||||
value: str = config.get(key)
|
return config
|
||||||
return value
|
|
||||||
except (FileNotFoundError, PermissionError, OSError):
|
except (FileNotFoundError, PermissionError, OSError):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@ -90,125 +109,47 @@ def threat_priority_mapping(threat_level, np_1, np_2, np_3, np_4, np_5):
|
|||||||
return priority_mapping
|
return priority_mapping
|
||||||
|
|
||||||
|
|
||||||
def set_basic_defaults(notifier):
|
def get_yaml_config():
|
||||||
# Setting some minimal defaults in case the yaml config isn't available
|
config = import_config()
|
||||||
notifier: str = notifier.lower()
|
|
||||||
|
|
||||||
sender: str = "Security message"
|
config['np_1'] = "3, 3, 3" if (config.get("notifier_priority_1") is None) else config.get("notifier_priority_1")
|
||||||
destination: str = "Test"
|
config['np_2'] = "4, 5" if (config.get("notifier_priority_2") is None) else config.get("notifier_priority_2")
|
||||||
priority: str = "1"
|
config['np_3'] = "6, 7" if (config.get("notifier_priority_3") is None) else config.get("notifier_priority_3")
|
||||||
message: str = "Test message"
|
config['np_4'] = "8, 9" if (config.get("notifier_priority_4") is None) else config.get("notifier_priority_4")
|
||||||
tags: str = "informational, testing, hard-coded"
|
config['np_5'] = "10, 11, 12" if (config.get("notifier_priority_5") is None) else config.get("notifier_priority_5")
|
||||||
click: str = "https://google.com"
|
config['targets'] = "ntfy, discord" if (config.get("targets") is None) else config.get("targets")
|
||||||
|
config['excluded_rules'] = "" if (config.get("excluded_rules") is None) else config.get("excluded_rules")
|
||||||
|
config['excluded_agents'] = "" if (config.get("excluded_agents") is None) else config.get("excluded_agents")
|
||||||
|
config['sender'] = "Wazuh (IDS)" if (config.get("sender") is None) else config.get("sender")
|
||||||
|
config['click'] = "https://wazuh.org" if (config.get("click") is None) else config.get("click")
|
||||||
|
|
||||||
if notifier == "ntfy":
|
return config
|
||||||
# NTFY defaults.
|
|
||||||
server: str = "https://ntfy.sh/"
|
|
||||||
|
|
||||||
elif notifier == "discord":
|
|
||||||
|
|
||||||
# Discord defaults.
|
|
||||||
server: str = ""
|
|
||||||
|
|
||||||
else:
|
|
||||||
server: str = "Unknown notifier specified. Must be ntfy or discord."
|
|
||||||
|
|
||||||
# Mapping event threat level to 5 value priority level.
|
|
||||||
|
|
||||||
np_5 = "12, 11, 10"
|
|
||||||
np_4 = "9, 8"
|
|
||||||
np_3 = "7, 6"
|
|
||||||
np_2 = "5, 4"
|
|
||||||
np_1 = "3, 2, 1"
|
|
||||||
|
|
||||||
return (server, sender, destination, priority, message, tags, click,
|
|
||||||
np_1, np_2, np_3, np_4, np_5)
|
|
||||||
|
|
||||||
|
|
||||||
def get_yaml_config(notifier: str, y_server: str, y_sender: str, y_destination: str, y_priority: str, y_message: str,
|
def get_arguments():
|
||||||
y_tags: str, y_click: str, y_np_1: str, y_np_2: str, y_np_3: str, y_np_4: str, y_np_5: str):
|
|
||||||
notifier: str = notifier.lower()
|
|
||||||
server = y_server if (import_config(notifier + "_server") is None) else import_config(notifier + "_server")
|
|
||||||
sender = y_sender if (import_config(notifier + "_sender") is None) else import_config(notifier + "_sender")
|
|
||||||
destination = y_destination if (import_config(notifier + "_destination") is None) else \
|
|
||||||
import_config(notifier + "_destination")
|
|
||||||
priority = y_priority if (import_config(notifier + "_priority") is None) else import_config(notifier + "_priority")
|
|
||||||
message = y_message if (import_config(notifier + "_message") is None) else import_config(notifier + "_message")
|
|
||||||
tags = y_tags if (import_config(notifier + "_tags") is None) else import_config(notifier + "_tags")
|
|
||||||
click = y_click if (import_config(notifier + "_click") is None) else import_config(notifier + "_click")
|
|
||||||
|
|
||||||
np_1 = y_np_1 if (import_config("np1") is None) else import_config("np1")
|
|
||||||
np_2 = y_np_2 if (import_config("np2") is None) else import_config("np2")
|
|
||||||
np_3 = y_np_3 if (import_config("np3") is None) else import_config("np3")
|
|
||||||
np_4 = y_np_4 if (import_config("np4") is None) else import_config("np4")
|
|
||||||
np_5 = y_np_5 if (import_config("np5") is None) else import_config("np5")
|
|
||||||
|
|
||||||
return (server, sender, destination, priority, message, tags, click,
|
|
||||||
np_1, np_2, np_3, np_4, np_5)
|
|
||||||
|
|
||||||
|
|
||||||
def call_for_help(notifier):
|
|
||||||
notifier: str = notifier.lower()
|
|
||||||
|
|
||||||
if notifier == "ntfy":
|
|
||||||
# NTFY help.
|
|
||||||
|
|
||||||
help_text: str = """
|
|
||||||
-u, --server is the URL of the NTFY server, ending with a "/".
|
|
||||||
Default is https://ntfy.sh/.
|
|
||||||
-s, --sender is the sender of the message, either an app name or a person.
|
|
||||||
Default is "Wazuh (IDS)".
|
|
||||||
-d, --destination is the NTFY subscription, to send the message to.
|
|
||||||
Default is none.
|
|
||||||
-p, --priority is the priority of the message, ranging from 1 (lowest), to 5 (highest).
|
|
||||||
Default is 5.
|
|
||||||
-m, --message is the text of the message to be sent.
|
|
||||||
Default is "Test message".
|
|
||||||
-t, --tags is an arbitrary strings of tags (keywords), seperated by a "," (comma).
|
|
||||||
Default is "informational, testing, hard-coded".
|
|
||||||
-c, --click is a link (URL) that can be followed by tapping/clicking inside the message.
|
|
||||||
Default is https://google.com.
|
|
||||||
-h, --help shows this help message. Must have no value argument.
|
|
||||||
-v, --view show config.
|
|
||||||
"""
|
|
||||||
|
|
||||||
elif notifier == "discord":
|
|
||||||
|
|
||||||
# Discord help.
|
|
||||||
|
|
||||||
help_text: str = """
|
|
||||||
-u, --server is the webhook URL of the Discord server. It is stored in .env.
|
|
||||||
-s, --sender is the sender of the message, either an app name or a person.
|
|
||||||
The default is "Security message".
|
|
||||||
-d, --destination is the destination (actually the originator) of the message, either an app name or a person.
|
|
||||||
Default is "Wazuh (IDS)"
|
|
||||||
-p, --priority is the priority of the message, ranging from 1 (highest), to 5 (lowest).
|
|
||||||
Default is 5.
|
|
||||||
-m, --message is the text of the message to be sent.
|
|
||||||
Default is "Test message", but may include --tags and/or --click.
|
|
||||||
-t, --tags is an arbitrary strings of tags (keywords), seperated by a "," (comma).
|
|
||||||
Default is "informational, testing, hard-coded".
|
|
||||||
-c, --click is a link (URL) that can be followed by tapping/clicking inside the message.
|
|
||||||
Default is https://google.com.
|
|
||||||
-h, --help Shows this help message.
|
|
||||||
-v, --view Show yaml configuration.
|
|
||||||
"""
|
|
||||||
else:
|
|
||||||
help_text: str = """
|
|
||||||
No help available. Assuming the wrong notifier asked for help.
|
|
||||||
"""
|
|
||||||
|
|
||||||
return help_text
|
|
||||||
|
|
||||||
|
|
||||||
def get_arguments(notifier, options, long_options):
|
|
||||||
# Get params during execution. Params found here, override minimal defaults and/or config settings.
|
# Get params during execution. Params found here, override minimal defaults and/or config settings.
|
||||||
|
|
||||||
notifier: str = notifier.lower()
|
# Short options
|
||||||
|
options: str = "u:s:p:m:t:c:hv"
|
||||||
|
|
||||||
help_text = call_for_help(notifier)
|
# Long options
|
||||||
|
long_options: list = ["url=", "sender=", "destination=", "priority=", "message=", "tags=", "click=", "help",
|
||||||
|
"view"]
|
||||||
|
|
||||||
sender, destination, message, priority, tags, click = "", "", "", "", "", ""
|
help_text: str = """
|
||||||
|
-u, --url is the url for the server, ending with a "/".
|
||||||
|
-s, --sender is the sender of the message, either an app name or a person.
|
||||||
|
-d, --destination is the NTFY subscription or Discord title, to send the message to.
|
||||||
|
-p, --priority is the priority of the message, ranging from 1 (lowest), to 5 (highest).
|
||||||
|
-m, --message is the text of the message to be sent.
|
||||||
|
-t, --tags is an arbitrary strings of tags (keywords), seperated by a "," (comma).
|
||||||
|
-c, --click is a link (URL) that can be followed by tapping/clicking inside the message.
|
||||||
|
-h, --help shows this help message. Must have no value argument.
|
||||||
|
-v, --view show config.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
url, sender, destination, message, priority, tags, click = "", "", "", "", "", "", ""
|
||||||
|
|
||||||
argument_list: list = sys.argv[1:]
|
argument_list: list = sys.argv[1:]
|
||||||
|
|
||||||
@ -232,6 +173,9 @@ def get_arguments(notifier, options, long_options):
|
|||||||
view_config()
|
view_config()
|
||||||
exit()
|
exit()
|
||||||
|
|
||||||
|
elif current_argument in ("-u", "--url"):
|
||||||
|
url = current_value
|
||||||
|
|
||||||
elif current_argument in ("-s", "--sender"):
|
elif current_argument in ("-s", "--sender"):
|
||||||
sender = current_value
|
sender = current_value
|
||||||
|
|
||||||
@ -254,4 +198,4 @@ def get_arguments(notifier, options, long_options):
|
|||||||
# output error, and return with an error code
|
# output error, and return with an error code
|
||||||
print(str(err))
|
print(str(err))
|
||||||
|
|
||||||
return sender, destination, message, priority, tags, click
|
return url, sender, destination, message, priority, tags, click
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user