当前位置:   article > 正文

wazuh4.7利用python脚本发送告警信息到飞书机器人_wazuh 配置告警

wazuh 配置告警

最近在安装wazuh服务器,但是系统自带的集成第三方告警一直尝试无法使用,最后只能自己编写脚本实现实时告警功能。
一、编写python脚本,匹配level 12以上的告警级别,发送到飞书机器人

#!/usr/local/bin/python3
# -*- coding: utf-8 -*-
import sys
import re
import requests

webhook_url = "https://open.feishu.cn/open-apis/bot/v2/hook/xxxxxxxxxx"

# 使用一个变量记录当前的日志段落
current_log = ""

for line in sys.stdin:
    # 将每一行添加到当前的日志段落
    current_log += line
    
    # 检查是否到达一个新的日志段落的末尾
    if line.strip() == "":
        # 解析日志段落
        match = re.search(r'Rule: \d+ \(level (12|13|14|15)\)', current_log)
        if match:
            alert_level = match.group(1)

            # 发送到飞书机器人
            payload = {
                "msg_type": "text",
                "content": {
                    "text": f"New Alert (Level {alert_level}):\n{current_log}"
                }
            }
            headers = {"Content-Type": "application/json"}
            response = requests.post(webhook_url, json=payload, headers=headers)

            # 打印HTTP响应码和响应内容(用于调试)
            print(f"HTTP Response Code: {response.status_code}")
            print(f"HTTP Response Content: {response.text}")

            if response.status_code == 200:
                print("Notification sent successfully.")
            else:
                print(f"Failed to send notification. Status code: {response.status_code}")

        # 重置当前的日志段落
        current_log = ""
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43

二、将编写好的脚本执行以下命令,放到后台执行。
nohup tail -n 0 -F /var/ossec/logs/alerts/alerts.log | python3 process_log.py > output.log 2>&1 & disown

三、可根据脚本进行修改,过滤匹配其他告警信息,以下是模拟攻击,触发告警,告警展示。
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/624387
推荐阅读
相关标签
  

闽ICP备14008679号