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

11 lines
298 B
Bash

#!/bin/bash
FIREWALL="/opt/firewall/firewall.sh"
ATTACK="module-get-spam"
COUNT_SPAM=$(grep $2 $3 | grep -E "GET / HTTP" | 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
fi