firewall/modules/module-go.sh
Your Name b9a2d677dd fix
2024-09-25 13:49:47 -06:00

12 lines
337 B
Bash

#!/bin/bash
FIREWALL="/opt/firewall/firewall.sh"
ACCESS="/tmp/minute.log"
ATTACK="module-go"
GO_SPAM=$(grep $2 $ACCESS | grep "Go-http-client" | grep $1 | wc -l)
if [[ "$GO_SPAM" -gt 10 ]]; then
bash $FIREWALL ipBlockParser "$1"
bash $FIREWALL message "$ATTACK-$1"
redis-cli SADD tmp_block $1
cp $ACCESS /tmp/debug-$ATTACK-$1.txt
fi