11 lines
298 B
Bash
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
|