1993-06-20 09:41:45 -04:00
|
|
|
#!/bin/sh -
|
|
|
|
|
#
|
|
|
|
|
# @(#)security 5.3 (Berkeley) 5/28/91
|
1998-07-08 18:42:08 -04:00
|
|
|
# $Id: security,v 1.24 1998/06/27 11:13:59 andreas Exp $
|
1993-06-20 09:41:45 -04:00
|
|
|
#
|
|
|
|
|
PATH=/sbin:/bin:/usr/bin
|
1996-04-18 06:34:07 -04:00
|
|
|
LC_ALL=C; export LC_ALL
|
1993-06-20 09:41:45 -04:00
|
|
|
|
1996-06-30 15:35:20 -04:00
|
|
|
separator () {
|
|
|
|
|
echo ""
|
|
|
|
|
echo ""
|
|
|
|
|
}
|
|
|
|
|
|
1993-06-20 09:41:45 -04:00
|
|
|
host=`hostname -s`
|
|
|
|
|
echo "Subject: $host security check output"
|
|
|
|
|
|
|
|
|
|
LOG=/var/log
|
1996-07-31 02:47:05 -04:00
|
|
|
TMP=/var/run/_secure.$$
|
1993-06-20 09:41:45 -04:00
|
|
|
|
1993-09-06 19:12:04 -04:00
|
|
|
umask 027
|
|
|
|
|
|
1993-06-20 09:41:45 -04:00
|
|
|
echo "checking setuid files and devices:"
|
1993-09-06 19:12:04 -04:00
|
|
|
|
|
|
|
|
# don't have ncheck, but this does the equivalent of the commented out block.
|
|
|
|
|
# note that one of the original problem, the possibility of overrunning
|
|
|
|
|
# the args to ls, is still here...
|
|
|
|
|
#
|
1996-06-30 09:16:21 -04:00
|
|
|
MP=`mount -t ufs | grep -v " nosuid" | sed 's;/dev/;&r;' | awk '{ print $3 }'`
|
1993-10-25 16:13:16 -04:00
|
|
|
set $MP
|
1994-01-22 05:54:13 -05:00
|
|
|
while test $# -ge 1; do
|
1993-10-25 16:13:16 -04:00
|
|
|
mount=$1
|
|
|
|
|
shift
|
1997-02-23 16:34:34 -05:00
|
|
|
find $mount -xdev -type f \
|
1996-04-18 06:34:07 -04:00
|
|
|
\( -perm -u+x -or -perm -g+x -or -perm -o+x \) \
|
1997-02-23 16:34:34 -05:00
|
|
|
\( -perm -u+s -or -perm -g+s \) -print0
|
1997-03-03 02:03:50 -05:00
|
|
|
done | xargs -0 -n 20 ls -lTd | sort +9 > $TMP
|
1993-06-20 09:41:45 -04:00
|
|
|
|
1995-09-14 20:22:31 -04:00
|
|
|
if [ ! -f $LOG/setuid.today ] ; then
|
1996-06-30 15:35:20 -04:00
|
|
|
separator
|
1995-09-14 20:22:31 -04:00
|
|
|
echo "no $LOG/setuid.today"
|
|
|
|
|
cp $TMP $LOG/setuid.today
|
|
|
|
|
fi
|
1993-06-20 09:41:45 -04:00
|
|
|
if cmp $LOG/setuid.today $TMP >/dev/null; then :; else
|
1996-06-30 15:35:20 -04:00
|
|
|
separator
|
1996-04-19 18:28:01 -04:00
|
|
|
echo "$host setuid diffs:"
|
1995-05-26 21:37:44 -04:00
|
|
|
diff -b $LOG/setuid.today $TMP
|
1993-06-20 09:41:45 -04:00
|
|
|
mv $LOG/setuid.today $LOG/setuid.yesterday
|
|
|
|
|
mv $TMP $LOG/setuid.today
|
|
|
|
|
fi
|
|
|
|
|
|
1996-06-30 15:35:20 -04:00
|
|
|
separator
|
1993-06-20 09:41:45 -04:00
|
|
|
echo "checking for uids of 0:"
|
1998-07-08 18:42:08 -04:00
|
|
|
awk 'BEGIN {FS=":"} $3==0 {print $1,$3}' /etc/master.passwd
|
1996-06-30 15:35:20 -04:00
|
|
|
|
|
|
|
|
# show denied packets
|
1997-09-25 21:38:30 -04:00
|
|
|
if ipfw -a l 2>/dev/null | egrep "deny|reset|unreach" > $TMP; then
|
1996-06-30 15:35:20 -04:00
|
|
|
if [ ! -f $LOG/ipfw.today ] ; then
|
|
|
|
|
separator
|
|
|
|
|
echo "no $LOG/ipfw.today"
|
|
|
|
|
cp $TMP $LOG/ipfw.today
|
|
|
|
|
fi
|
|
|
|
|
if cmp $LOG/ipfw.today $TMP >/dev/null; then :; else
|
|
|
|
|
separator
|
|
|
|
|
echo "$host denied packets:"
|
|
|
|
|
diff -b $LOG/ipfw.today $TMP | egrep "^>"
|
|
|
|
|
mv $LOG/ipfw.today $LOG/ipfw.yesterday
|
|
|
|
|
mv $TMP $LOG/ipfw.today
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
1998-02-03 20:53:19 -05:00
|
|
|
# show ipfw rules which have reached the log limit
|
|
|
|
|
IPFW_LOG_LIMIT=`sysctl -n net.inet.ip.fw.verbose_limit 2> /dev/null`
|
|
|
|
|
if [ $? -eq 0 ] && [ $IPFW_LOG_LIMIT -ne 0 ]; then
|
|
|
|
|
ipfw -a l | grep " log " | perl -n -e \
|
|
|
|
|
'/^\d+\s+(\d+)/; print if ($1 >= '$IPFW_LOG_LIMIT')' > $TMP
|
|
|
|
|
if [ -s $TMP ]; then
|
|
|
|
|
separator
|
|
|
|
|
echo "ipfw log limit reached:"
|
|
|
|
|
cat $TMP
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
1996-10-12 00:56:28 -04:00
|
|
|
# show kernel log messages
|
1996-10-12 00:51:09 -04:00
|
|
|
if dmesg 2>/dev/null > $TMP; then
|
|
|
|
|
if [ ! -f $LOG/dmesg.today ] ; then
|
|
|
|
|
separator
|
|
|
|
|
echo "no $LOG/dmesg.today"
|
|
|
|
|
cp $TMP $LOG/dmesg.today
|
|
|
|
|
fi
|
1997-07-31 21:25:21 -04:00
|
|
|
if cmp $LOG/dmesg.today $TMP >/dev/null 2>&1; then :; else
|
1996-10-12 00:51:09 -04:00
|
|
|
separator
|
|
|
|
|
echo "$host kernel log messages:"
|
|
|
|
|
diff -b $LOG/dmesg.today $TMP | egrep "^>"
|
|
|
|
|
mv $LOG/dmesg.today $LOG/dmesg.yesterday
|
|
|
|
|
mv $TMP $LOG/dmesg.today
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
1998-06-27 07:13:59 -04:00
|
|
|
# show login failures
|
|
|
|
|
separator
|
|
|
|
|
echo "$host login failures:"
|
|
|
|
|
grep -i "login failures" $LOG/messages
|
|
|
|
|
|
|
|
|
|
# show tcp_wrapper warning messages
|
|
|
|
|
separator
|
|
|
|
|
echo "$host refused connections:"
|
|
|
|
|
grep -i "refused connect" $LOG/messages
|
|
|
|
|
|
1996-06-30 15:35:20 -04:00
|
|
|
rm -f $TMP
|