firewall/modules/module-go.sh

12 lines
339 B
Bash
Raw Normal View History

2024-09-24 21:18:59 -06:00
#!/bin/bash
FIREWALL="/opt/firewall/firewall.sh"
2024-09-24 22:30:26 -06:00
ATTACK="module-go"
2024-09-25 19:49:34 -06:00
COUNT_SPAM=$(grep $2 $3 | grep "Go-http-client" | grep $1 | wc -l)
2024-09-25 19:23:57 -06:00
SEARCH_SPAM=$(($COUNT_SPAM))
if [[ $SEARCH_SPAM -gt 10 ]]; then
2024-09-24 21:21:45 -06:00
bash $FIREWALL ipBlockParser "$1"
2024-09-24 22:30:26 -06:00
bash $FIREWALL message "$ATTACK-$1"
2024-09-24 21:21:45 -06:00
redis-cli SADD tmp_block $1
2024-09-25 19:49:34 -06:00
cp -f $3 /tmp/debug-$ATTACK-$1.txt
2024-09-24 21:18:59 -06:00
fi