firewall/modules/module-get-spam.sh
Your Name 6b16af087e fix
2024-09-25 22:29:19 -06:00

11 lines
308 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
fi