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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
#!/bin/sh
#
# tiger - A UN*X security checking system
# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
#
# Please see the file `COPYING' for the complete copyright notice.
#
# SunOS/4/check - 06/14/93
#
#-----------------------------------------------------------------------------
#
TigerInstallDir='.'
#
# Set default base directory.
# Order or preference:
# -B option
# TIGERHOMEDIR environment variable
# TigerInstallDir installed location
#
basedir=${TIGERHOMEDIR:=$TigerInstallDir}
for parm
do
case $parm in
-B) basedir=$2; break;;
esac
done
#
# Verify that a config file exists there, and if it does
# source it.
#
[ ! -r $basedir/config ] && {
echo "--ERROR-- [init002e] No 'config' file in \`$basedir'."
exit 1
}
. $basedir/config
. $BASEDIR/initdefs
#
# If run in test mode (-t) this will verify that all required
# elements are set.
#
[ "$Tiger_TESTMODE" = 'Y' ] && {
haveallcmds CAT CC GREP RM SGREP STRINGS || exit 1
haveallfiles BASEDIR WORKDIR || exit 1
echo "--CONFIG-- [init003c] $0: Configuration ok..."
exit 0
}
#------------------------------------------------------------------------
haveallcmds CAT CC GREP RM SGREP STRINGS || exit 1
haveallfiles BASEDIR WORKDIR || exit 1
$GREP -v '^#' /etc/ttytab |
$GREP console |
$SGREP secure && echo "--WARN-- [misc001w] CONSOLE is marked as secure."
$GREP -v '^#' /etc/ttytab |
$GREP -v console |
$SGREP secure && echo "--WARN-- [misc002w] TTY's are marked as secure."
#
# YPSERVER && not using securenets?
#
[ "$YPSERVER" = "YES" -a ! -f /var/yp/securenets ] && {
echo "--FAIL-- [misc003f] No /var/yp/securenets file."
}
status=`/usr/etc/eeprom |
$GREP '^secur.*=' |
$GREP -v 'badlogins' |
$SED -e 's/^secur.*=\(.*\)$/\1/'`
[ ! -n "$status" -o "$status" = "none" ] && {
echo "--WARN-- [misc004w] The PROM monitor is not in secure mode."
}
#[ -u /usr/etc/restore ] && {
# echo "--WARN-- /usr/etc/restore is setuid but should not be."
#}
rsig=" 5e62adcc ac948154 e45237db 33b9153d 0e0ccad8 2de71646 84486f31 1b32eda8"
if haveallcmds SNEFRU; then
if [ -x /usr/openwin/bin/loadmodule ]; then
sig="`$SNEFRU < /usr/openwin/bin/loadmodule`"
if [ "$sig" = "$rsig" ]; then
echo "--WARN-- [ca9122f] /usr/openwin/bin/loadmodule is insecure."
else
$STRINGS /usr/openwin/bin/loadmodule | $SGREP IFS || {
echo "--WARN-- [ca9122w] /usr/openwin/bin/loadmodule may be insecure."
}
fi
elif [ -x $OPENWINHOME/bin/loadmodule ]; then
sig="`$SNEFRU < $OPENWINHOME/bin/loadmodule`"
if [ "$sig" = "$rsig" ]; then
echo "--WARN-- [ca9122f] $OPENWINHOME/bin/loadmodule is insecure."
else
$STRINGS /usr/openwin/bin/loadmodule | $SGREP IFS || {
echo "--WARN-- [ca9122w] /usr/openwin/bin/loadmodule may be insecure."
}
fi
else
echo "--INFO-- [ca9122i] Can not locate OpenWindows on this machine."
fi
fi
haveallcmds CC && {
$CAT <<EOF >$WORKDIR/inv.c
#include <stdio.h>
main(){int c; while((c=getchar()) != EOF)putchar(~c);}
EOF
(cd $WORKDIR; $CC inv.c -o inv)
[ -x $WORKDIR/inv ] && {
$WORKDIR/inv < /usr/bin/login > $WORKDIR/login.tmp.$$
$STRINGS $WORKDIR/login.tmp.$$ > $WORKDIR/strings.$$
delete $WORKDIR/login.tmp.$$
[ -s $WORKDIR/strings.$$ ] && {
echo "--ALERT-- /usr/bin/login contains these strings in 1's complement form:"
$CAT $WORKDIR/strings.$$
}
delete $WORKDIR/strings.$$
}
delete $WORKDIR/inv $WORKDIR/inv.c
}
$PS -auxww > $WORKDIR/ps.out.$$
$SGREP "rpc.mountd *-n" $WORKDIR/ps.out.$$ && {
echo "--WARN-- [misc006w] NFS rpc.mountd running with '-n' option"
}
$SGREP "ypbind *-ypset" $WORKDIR/ps.out.$$ && {
echo "--WARN-- [misc007w] NIS ypbind running with a -ypset option."
}
nfsmon=`echo "nfs_portmon/" |
/usr/bin/adb /vmunix /dev/kmem |
$AWK '/_nfs_portmon:/ {print $2}'`
[ "$nfsmon" = '0' ] && {
echo "--WARN-- [misc008w] NFS port checking disabled in kernel."
}
delete $WORKDIR/ps.out.$$
|