1993-06-20 13:41:45 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
2000-10-08 19:20:36 +00:00
|
|
|
# Copyright (c) 2000 The FreeBSD Project
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
|
|
|
#
|
1993-06-20 13:41:45 +00:00
|
|
|
# @(#)security 5.3 (Berkeley) 5/28/91
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1993-06-20 13:41:45 +00:00
|
|
|
#
|
2000-10-08 19:20:36 +00:00
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
PATH=/sbin:/bin:/usr/bin
|
1996-04-18 10:34:07 +00:00
|
|
|
LC_ALL=C; export LC_ALL
|
2000-09-14 17:19:15 +00:00
|
|
|
rc=0
|
|
|
|
LOG=/var/log
|
|
|
|
TMP=/var/run/_secure.$$
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1996-06-30 19:35:20 +00:00
|
|
|
separator () {
|
1999-09-13 15:44:20 +00:00
|
|
|
echo ''
|
|
|
|
echo ''
|
1996-06-30 19:35:20 +00:00
|
|
|
}
|
|
|
|
|
2000-09-14 17:19:15 +00:00
|
|
|
catmsgs() {
|
2001-02-03 01:28:46 +00:00
|
|
|
find $LOG -name 'messages.*' -mtime -2 |
|
|
|
|
sort -t. -r -n +1 -2 |
|
|
|
|
xargs zcat -f
|
|
|
|
[ -f $LOG/messages ] && cat $LOG/messages
|
2000-09-14 17:19:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-23 01:16:49 +00:00
|
|
|
sflag=FALSE ignore=
|
|
|
|
while getopts ams c
|
|
|
|
do
|
2001-02-03 01:28:46 +00:00
|
|
|
case "$c" in
|
|
|
|
a) ignore="$ignore|^amd:";;
|
|
|
|
m) ignore="$ignore|^mfs:";;
|
|
|
|
s) sflag=TRUE;;
|
|
|
|
esac
|
2000-06-23 01:16:49 +00:00
|
|
|
done
|
|
|
|
|
1999-12-20 17:33:56 +00:00
|
|
|
yesterday=`date -v-1d "+%b %e "`
|
|
|
|
|
1999-01-01 17:37:33 +00:00
|
|
|
host=`hostname`
|
2000-06-23 01:16:49 +00:00
|
|
|
[ $sflag = FALSE ] && echo "Subject: ${host} security check output"
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1993-09-06 23:12:04 +00:00
|
|
|
umask 027
|
|
|
|
|
2000-12-17 08:16:06 +00:00
|
|
|
echo 'Checking setuid files and devices:'
|
1993-09-06 23:12:04 +00:00
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Don't have ncheck, but this does the equivalent of the commented out block.
|
|
|
|
# Note that one of the original problems, the possibility of overrunning
|
1993-09-06 23:12:04 +00:00
|
|
|
# the args to ls, is still here...
|
|
|
|
#
|
2000-09-18 18:35:07 +00:00
|
|
|
MP=`mount -t ufs | grep -v " nosuid" | awk '{ print $3 }' | sort`
|
1999-08-25 16:01:45 +00:00
|
|
|
set ${MP}
|
1999-09-13 15:44:20 +00:00
|
|
|
while [ $# -ge 1 ]; do
|
1993-10-25 20:13:16 +00:00
|
|
|
mount=$1
|
|
|
|
shift
|
1997-02-23 21:34:34 +00:00
|
|
|
find $mount -xdev -type f \
|
1996-04-18 10:34:07 +00:00
|
|
|
\( -perm -u+x -or -perm -g+x -or -perm -o+x \) \
|
1999-09-13 15:44:20 +00:00
|
|
|
\( -perm -u+s -or -perm -g+s \) -print0
|
2000-07-11 14:24:53 +00:00
|
|
|
done | xargs -0 -n 20 ls -liTd | sort +10 > ${TMP}
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
if [ ! -f ${LOG}/setuid.today ]; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1996-06-30 19:35:20 +00:00
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo "No ${LOG}/setuid.today"
|
2000-09-14 17:19:15 +00:00
|
|
|
cp ${TMP} ${LOG}/setuid.today || rc=3
|
1995-09-15 00:22:31 +00:00
|
|
|
fi
|
1999-09-13 15:44:20 +00:00
|
|
|
|
2000-06-23 01:16:49 +00:00
|
|
|
if ! cmp ${LOG}/setuid.today ${TMP} >/dev/null; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1996-06-30 19:35:20 +00:00
|
|
|
separator
|
1999-08-25 16:01:45 +00:00
|
|
|
echo "${host} setuid diffs:"
|
2000-08-07 09:08:35 +00:00
|
|
|
diff -w ${LOG}/setuid.today ${TMP}
|
2000-09-14 17:19:15 +00:00
|
|
|
mv ${LOG}/setuid.today ${LOG}/setuid.yesterday || rc=3
|
|
|
|
mv ${TMP} ${LOG}/setuid.today || rc=3
|
1993-06-20 13:41:45 +00:00
|
|
|
fi
|
|
|
|
|
2000-04-06 10:46:50 +00:00
|
|
|
# Show changes in the way filesystems are mounted
|
|
|
|
#
|
2000-06-23 01:16:49 +00:00
|
|
|
[ -n "$ignore" ] && cmd="egrep -v ${ignore#|}" || cmd=cat
|
|
|
|
if mount -p | $cmd > $TMP; then
|
2000-04-06 10:46:50 +00:00
|
|
|
if [ ! -f $LOG/mount.today ]; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
2000-04-06 10:46:50 +00:00
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo "No $LOG/mount.today"
|
2000-09-14 17:19:15 +00:00
|
|
|
cp $TMP $LOG/mount.today || rc=3
|
2000-04-06 10:46:50 +00:00
|
|
|
fi
|
2000-06-23 01:16:49 +00:00
|
|
|
if ! cmp $LOG/mount.today $TMP >/dev/null 2>&1; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
2000-04-06 10:46:50 +00:00
|
|
|
separator
|
|
|
|
echo "$host changes in mounted filesystems:"
|
|
|
|
diff -b $LOG/mount.today $TMP
|
2000-09-14 17:19:15 +00:00
|
|
|
mv $LOG/mount.today $LOG/mount.yesterday || rc=3
|
|
|
|
mv $TMP $LOG/mount.today || rc=3
|
2000-04-06 10:46:50 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1996-06-30 19:35:20 +00:00
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo 'Checking for uids of 0:'
|
2001-03-17 21:22:29 +00:00
|
|
|
n=$(awk -F: '/^#/ {next} $3==0 {print $1,$3}' /etc/master.passwd |
|
2000-09-14 17:19:15 +00:00
|
|
|
tee /dev/stderr |
|
|
|
|
sed -e '/^root 0$/d' -e '/^toor 0$/d' |
|
|
|
|
wc -l)
|
|
|
|
[ $n -gt 0 -a $rc -lt 1 ] && rc=1
|
1998-08-11 08:48:54 +00:00
|
|
|
|
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo 'Checking for passwordless accounts:'
|
2000-09-14 17:19:15 +00:00
|
|
|
n=$(awk -F: 'NF > 1 && $1 !~ /^[#+-]/ && $2=="" {print $0}' /etc/master.passwd |
|
|
|
|
tee /dev/stderr | wc -l)
|
|
|
|
[ $n -gt 0 -a $rc -lt 1 ] && rc=1
|
1996-06-30 19:35:20 +00:00
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Show denied packets
|
|
|
|
#
|
1999-08-25 16:01:45 +00:00
|
|
|
if ipfw -a l 2>/dev/null | egrep "deny|reset|unreach" > ${TMP}; then
|
1999-09-13 15:44:20 +00:00
|
|
|
if [ ! -f ${LOG}/ipfw.today ]; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1996-06-30 19:35:20 +00:00
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo "No ${LOG}/ipfw.today"
|
2000-09-14 17:19:15 +00:00
|
|
|
cp ${TMP} ${LOG}/ipfw.today || rc=3
|
1996-06-30 19:35:20 +00:00
|
|
|
fi
|
1999-09-13 15:44:20 +00:00
|
|
|
|
2000-06-23 01:16:49 +00:00
|
|
|
if ! cmp ${LOG}/ipfw.today ${TMP} >/dev/null; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1996-06-30 19:35:20 +00:00
|
|
|
separator
|
1999-09-13 15:44:20 +00:00
|
|
|
echo "${host} denied packets:"
|
|
|
|
diff -b ${LOG}/ipfw.today ${TMP} | egrep "^>"
|
2000-09-14 17:19:15 +00:00
|
|
|
mv ${LOG}/ipfw.today ${LOG}/ipfw.yesterday || rc=3
|
|
|
|
mv ${TMP} ${LOG}/ipfw.today || rc=3
|
1996-06-30 19:35:20 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Show ipfw rules which have reached the log limit
|
|
|
|
#
|
1998-02-04 01:53:19 +00:00
|
|
|
IPFW_LOG_LIMIT=`sysctl -n net.inet.ip.fw.verbose_limit 2> /dev/null`
|
1999-10-04 14:54:34 +00:00
|
|
|
if [ $? -eq 0 -a "${IPFW_LOG_LIMIT}" -ne 0 ]; then
|
1998-02-04 01:53:19 +00:00
|
|
|
ipfw -a l | grep " log " | perl -n -e \
|
1999-08-25 16:01:45 +00:00
|
|
|
'/^\d+\s+(\d+)/; print if ($1 >= '$IPFW_LOG_LIMIT')' > ${TMP}
|
1999-10-04 14:54:34 +00:00
|
|
|
if [ -s "${TMP}" ]; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1998-02-04 01:53:19 +00:00
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo 'ipfw log limit reached:'
|
1999-08-25 16:01:45 +00:00
|
|
|
cat ${TMP}
|
1998-02-04 01:53:19 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Show kernel log messages
|
|
|
|
#
|
1999-08-25 16:01:45 +00:00
|
|
|
if dmesg 2>/dev/null > ${TMP}; then
|
1999-09-13 15:44:20 +00:00
|
|
|
if [ ! -f ${LOG}/dmesg.today ]; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1996-10-12 04:51:09 +00:00
|
|
|
separator
|
2000-12-17 08:16:06 +00:00
|
|
|
echo "No ${LOG}/dmesg.today"
|
2000-09-14 17:19:15 +00:00
|
|
|
cp ${TMP} ${LOG}/dmesg.today || rc=3
|
1996-10-12 04:51:09 +00:00
|
|
|
fi
|
1999-09-13 15:44:20 +00:00
|
|
|
|
2000-06-23 01:16:49 +00:00
|
|
|
if ! cmp ${LOG}/dmesg.today ${TMP} >/dev/null 2>&1; then
|
2000-09-14 17:19:15 +00:00
|
|
|
[ $rc -lt 1 ] && rc=1
|
1996-10-12 04:51:09 +00:00
|
|
|
separator
|
1999-09-13 15:44:20 +00:00
|
|
|
echo "${host} kernel log messages:"
|
|
|
|
diff -b ${LOG}/dmesg.today ${TMP} | egrep "^>"
|
2000-09-14 17:19:15 +00:00
|
|
|
mv ${LOG}/dmesg.today ${LOG}/dmesg.yesterday || rc=3
|
|
|
|
mv ${TMP} ${LOG}/dmesg.today || rc=3
|
1996-10-12 04:51:09 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Show login failures
|
|
|
|
#
|
1998-06-27 11:13:59 +00:00
|
|
|
separator
|
1999-08-25 16:01:45 +00:00
|
|
|
echo "${host} login failures:"
|
2000-09-14 17:19:15 +00:00
|
|
|
n=$(catmsgs | grep -i "^$yesterday.*login failure" | tee /dev/stderr | wc -l)
|
|
|
|
[ $n -gt 0 -a $rc -lt 1 ] && rc=1
|
1998-06-27 11:13:59 +00:00
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
# Show tcp_wrapper warning messages
|
|
|
|
#
|
1998-06-27 11:13:59 +00:00
|
|
|
separator
|
1999-08-25 16:01:45 +00:00
|
|
|
echo "${host} refused connections:"
|
2000-09-14 17:19:15 +00:00
|
|
|
n=$(catmsgs | grep -i "^$yesterday.*refused connect" | tee /dev/stderr | wc -l)
|
|
|
|
[ $n -gt 0 -a $rc -lt 1 ] && rc=1
|
1998-06-27 11:13:59 +00:00
|
|
|
|
1999-08-25 16:01:45 +00:00
|
|
|
rm -f ${TMP}
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
exit $rc
|