Browse Source

Make the test for unsafe umask more bullet-proof. With help from marc@

OPENBSD_3_4
millert 21 years ago
parent
commit
c877ad0d6f
1 changed files with 11 additions and 7 deletions
  1. +11
    -7
      src/etc/security

+ 11
- 7
src/etc/security View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: security,v 1.60 2003/06/30 23:47:14 avsm Exp $
# $OpenBSD: security,v 1.61 2003/07/01 21:52:39 millert Exp $
# from: @(#)security 8.1 (Berkeley) 6/9/93
#
@ -136,14 +136,18 @@ umaskset=no
list="/etc/csh.cshrc /etc/csh.login ${rhome}/.cshrc ${rhome}/.login"
for i in $list ; do
if [ -s $i ] ; then
if egrep umask $i > /dev/null ; then
awk '{
if ($1 == "umask") {
if ($2 % 100 ~ /^[0145]/)
print "Root umask is group writable";
if ($2 % 10 ~ /^[0145]/)
print "Root umask is other writable";
}
}' < $i > $TMP3
if [ -s $TMP3 ]; then
umaskset=yes
cat $TMP3 >> $OUTPUT
fi
egrep umask $i |
awk '$2 % 100 < 20 \
{ print "Root umask is group writable" }
$2 % 10 < 2 \
{ print "Root umask is other writable" }' >> $OUTPUT
SAVE_PATH=$PATH
unset PATH
/bin/csh -f -s << end-of-csh > /dev/null 2>&1


Loading…
Cancel
Save