firewall/modules/module-get-spam.sh
Your Name 3e133c7c0d fix
2024-09-25 22:33:17 -06:00

12 lines
344 B
Bash

#!/bin/bash
FIREWALL="/opt/firewall/firewall.sh"
ATTACK="module-get-spam"
COUNT_SPAM=$(grep $2 $3 | grep -E "GET / HTTP" | grep $1 | wc -l)
SEARCH_SPAM=$(($COUNT_SPAM))
if [[ $SEARCH_SPAM -gt 20 ]]; 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