钉钉漏洞通知脚本dingtalkBot—配套Automated_bounty_Hunter

目录

1.前言

2.dingtalkBot.py


1.前言

        该脚本主要对接Xray的xray_webhook 将消息回传到钉钉bot,实现xray的漏扫钉钉机器人通知。


2.dingtalkBot.py

from flask import Flask, request
import requests
import datetime
import json

app = Flask(__name__)

#钉钉webhook接口
def DingWebhook(message):
    #SRC_Bot access_token
    url='https://oapi.dingtalk.com/robot/send?access_token=xxx'
    #need with keyword,此处是钉钉机器人使用的关键字设置
    program={
        "markdown": {
            "title": "afei00123",
            "text": message+"afei00123"
  

你可能感兴趣的:(代码审计与工具开发,钉钉,网络安全,web安全,自动化)