diff options
author | 2006-03-21 19:59:28 +0000 | |
---|---|---|
committer | 2006-03-21 19:59:28 +0000 | |
commit | 39bc12dce1b886bf8a29f6c87f597e6021d074d3 (patch) | |
tree | f7d0e78b91b7d79bfa28e544d1b7b08ddc31c59d | |
parent | fix endless loop in case of error in archive header. (diff) | |
download | wireguard-openbsd-39bc12dce1b886bf8a29f6c87f597e6021d074d3.tar.xz wireguard-openbsd-39bc12dce1b886bf8a29f6c87f597e6021d074d3.zip |
Fix for PR 5043: shell startup scripts might contain binary characters but
grep should assume ASCII text, fixes umask detection
ok millert@ jaredy@
-rw-r--r-- | etc/security | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/security b/etc/security index f7a6ab083a4..a40865e2e85 100644 --- a/etc/security +++ b/etc/security @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: security,v 1.74 2005/12/06 20:18:56 pedro Exp $ +# $OpenBSD: security,v 1.75 2006/03/21 19:59:28 david Exp $ # from: @(#)security 8.1 (Berkeley) 6/9/93 # @@ -136,7 +136,7 @@ umaskset=no list="/etc/csh.cshrc /etc/csh.login ${rhome}/.cshrc ${rhome}/.login" for i in $list ; do if [ -s $i ] ; then - if egrep -q '[[:space:]]*umask[[:space:]]' $i ; then + if egrep -aq '[[:space:]]*umask[[:space:]]' $i ; then umaskset=yes fi awk '{ @@ -188,10 +188,10 @@ umaskset=no list="/etc/profile ${rhome}/.profile" for i in $list; do if [ -s $i ] ; then - if egrep umask $i > /dev/null ; then + if egrep -a umask $i > /dev/null ; then umaskset=yes fi - egrep umask $i | + egrep -a umask $i | awk '$2 % 100 < 20 \ { print "Root umask is group writable" } \ $2 % 10 < 2 \ @@ -243,12 +243,12 @@ list="/etc/ksh.kshrc `cat $TMP2`" (cd $rhome for i in $list; do if [ -s $i ] ; then - egrep umask $i | + egrep -a umask $i | awk '$2 % 100 < 20 \ { print "Root umask is group writable" } \ $2 % 10 < 2 \ { print "Root umask is other writable" }' >> $OUTPUT - if egrep PATH= $i > /dev/null ; then + if egrep -a PATH= $i > /dev/null ; then SAVE_PATH=$PATH unset PATH /bin/ksh << end-of-sh > /dev/null 2>&1 |