diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2002-05-24 01:44:53 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2002-05-24 01:44:53 +0000 |
commit | d71c35a87e20c1124674a76428a1db37c2c22f0b (patch) | |
tree | f0a11158d5554d8b17bd66e50ad1b724089dbc9a /etc/sendmail | |
parent | 480071f11ab322fd70e4db39208b0245ea44b254 (diff) | |
download | FreeBSD-src-d71c35a87e20c1124674a76428a1db37c2c22f0b.zip FreeBSD-src-d71c35a87e20c1124674a76428a1db37c2c22f0b.tar.gz |
Change the default permissions for the sendmail statistics file to 0640
instead of 0644 to help protect users against a file locking local
denial of service.
MFC after: 1 day
pending RE approval
Diffstat (limited to 'etc/sendmail')
-rw-r--r-- | etc/sendmail/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sendmail/Makefile b/etc/sendmail/Makefile index 5162498..394d7b1 100644 --- a/etc/sendmail/Makefile +++ b/etc/sendmail/Makefile @@ -133,7 +133,7 @@ distribution: freebsd.cf freebsd.mc ${INSTALL_CF} ${INSTALL_SUBMIT_CF} .endif ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${SMDIR}/helpfile \ ${DESTDIR}/etc/mail/helpfile - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \ ${DESTDIR}/var/log/sendmail.st .include <bsd.prog.mk> |