共计 679 个字符,预计需要花费 2 分钟才能阅读完成。
1、首先在钉钉上建设一个群聊
2、群设置 -> 智能群助手 -> 增加机器人 -> 获取 Webhook, 其中的 access_token 参数能够间接替换上面 curl 申请的 xxxxxx。
3、间接运行脚本,开始监听预警信息
上面是脚本代码
while :
do
formatDate=`date "+%d/%b/%Y:%H:%M" | cat`;
formatDate=`echo ${formatDate%?}`
agoformatDate=`date -d "10 minute ago" "+%d/%b/%Y:%H:%M" | cat`;
agoformatDate=`echo ${agoformatDate%?}`
#echo ${formatDate}\|${agoformatDate}
log=`tail -1000 access.log | grep -E ${formatDate}\|${agoformatDate} | grep -v "/ 日志规定"`
#echo $log
logLength=`expr length "$log"`;
#echo $logLength;
if [$logLength -gt 50];then
echo "日志长度大于 50,代表有疑似攻打申请, 发送钉钉预警音讯";
curl -i -k -H "Content-type: application/json" -X POST -d '{"msgtype":"text","text": {"content":" 疑似攻打申请,请解决 "}}' https://oapi.dingtalk.com/robot/send?access_token=xxxxxx
fi
sleep 600;
done
正文完