blob: fa5b538aeaf2e45e52ec0310fcac582ac235f8c4 (
plain)
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
|
#!/bin/bash
if [ -f /etc/security/msec/security.conf ]; then
. /etc/security/msec/security.conf
else
exit 1
fi
PROMISC_CHECK="/usr/bin/promisc_check -q"
#
# Check if a network interface is in promisc check...
# Written by Vandoorselaere Yoann, <yoann@mandrakesoft.com>
#
LogPromisc() {
Syslog "Security warning : $1 is in promiscuous mode. (sniffer running ?)"
Ttylog "\\033[1;31mSecurity warning : $1 is in promiscuous mode.\\033[0;39m"
Ttylog "\\033[1;31mA sniffer is probably running on your system.\\033[0;39m
}
if [ -f /etc/security/msec/security.conf ]; then
. /etc/security/msec/security.conf
else
exit 1
fi
if [ CHECK_PROMISC == "no" ]; then
exit 0;
fi
for INTERFACE in `$PROMISC_CHECK`; do
LogPromisc $INTERFACE
done
|