firewall/modules/module-go.sh
Your Name 5b25040de2 fiux
2024-09-25 19:49:34 -06:00

12 lines
339 B
Bash

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