firewall/modules/module-get-spam.sh
Your Name 87c9c30853 fix
2024-09-24 22:15:46 -06:00

11 lines
309 B
Bash

#!/bin/bash
FIREWALL="/opt/firewall/firewall.sh"
ACCESS="/tmp/minute.log"
ATTACK="module-get-spam DDOS Attack "
GET_SPAM=$(grep $2 $ACCESS | grep -E "GET / HTTP" | wc -l)
if [[ "$GET_SPAM" -gt 20 ]]; then
bash $FIREWALL ipBlockParser "$1"
bash $FIREWALL message "$ATTACK $1"
redis-cli SADD tmp_block $1
fi