-
Notifications
You must be signed in to change notification settings - Fork 23
/
check_ddos.sh
executable file
·60 lines (53 loc) · 1.2 KB
/
check_ddos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env bash
#
# Check DDOS attack (SYN FLOOD) plugin for Nagios
#
# Usage: check_ddos.sh [-w warning] [-c critical]
# -w, --warning WARNING Warning value
# -c, --critical CRITICAL Critical value
# -h, --help Display this screen
#
# (c) 2014, Benjamin Dos Santos <benjamin.dossantos@gmail.com>
# https://github.com/bdossantos/nagios-plugins
#
while [[ -n "$1" ]]; do
case $1 in
--warning | -w)
warn=$2
shift
;;
--critical | -c)
crit=$2
shift
;;
--help | -h)
sed -n '2,9p' "$0" | tr -d '#'
exit 3
;;
*)
echo "Unknown argument: $1"
exec "$0" --help
exit 3
;;
esac
shift
done
warn=${warn:=50}
crit=${crit:=70}
netstat=$(netstat -an)
syn_recv=$(echo "$netstat" | grep 'SYN_RECV' | wc -l)
perfdata=$(echo "$netstat" | grep 'SYN_RECV' | awk {'print $6'} | cut -f 1 -d ":" | sort | uniq -c | sort -k1,1rn | head -10)
exit_status=3
if [[ $syn_recv -ge $warn ]]; then
exit_status=1
if [[ $syn_recv -ge $crit ]]; then
exit_status=2
fi
echo "DDOS attack !"
echo "Top 10 SYN_RECV sources :"
echo "$perfdata"
else
echo "No DDOS detected ($syn_recv / $warn)"
exit_status=0
fi
exit $exit_status