diff options
author | 2003-07-01 22:12:50 +0000 | |
---|---|---|
committer | 2003-07-01 22:12:50 +0000 | |
commit | d44d4b658b06d43715c93c1a8be9e4e4ec2fb71d (patch) | |
tree | 9da5f19aa67b3aef2eb20793372df93d359a1f98 | |
parent | Make the test for unsafe umask more bullet-proof. With help from marc@ (diff) | |
download | wireguard-openbsd-d44d4b658b06d43715c93c1a8be9e4e4ec2fb71d.tar.xz wireguard-openbsd-d44d4b658b06d43715c93c1a8be9e4e4ec2fb71d.zip |
We need the "/ 10" in the group writability check after all; marc@
-rw-r--r-- | etc/security | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/security b/etc/security index ede7aa84d15..9e8b8c46a1f 100644 --- a/etc/security +++ b/etc/security @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: security,v 1.61 2003/07/01 21:52:39 millert Exp $ +# $OpenBSD: security,v 1.62 2003/07/01 22:12:50 millert Exp $ # from: @(#)security 8.1 (Berkeley) 6/9/93 # @@ -138,7 +138,7 @@ for i in $list ; do if [ -s $i ] ; then awk '{ if ($1 == "umask") { - if ($2 % 100 ~ /^[0145]/) + if ($2 % 100 / 10 ~ /^[0145]/) print "Root umask is group writable"; if ($2 % 10 ~ /^[0145]/) print "Root umask is other writable"; |