diff options
author | cjc <cjc@FreeBSD.org> | 2001-12-07 23:57:39 +0000 |
---|---|---|
committer | cjc <cjc@FreeBSD.org> | 2001-12-07 23:57:39 +0000 |
commit | ba1e7b85770ec4a614f79c25d579dcd341018bdd (patch) | |
tree | a90b7b90f63cfbd9961c5d653c2f3a139806e2b1 /share | |
parent | be29456bc43b8c5ac3ee45ea4f345a65df0637ff (diff) | |
download | FreeBSD-src-ba1e7b85770ec4a614f79c25d579dcd341018bdd.zip FreeBSD-src-ba1e7b85770ec4a614f79c25d579dcd341018bdd.tar.gz |
Long ago, there was just /etc/daily. Then /etc/security was split out
of /etc/daily. Some time later, /etc/daily became a set of periodic(8)
scripts. Now, this evolution continues, and /etc/security has been
broken into periodic(8) scripts to make local customization easier and
more maintainable.
Reviewed by: ru
Approved by: ru
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man5/periodic.conf.5 | 101 |
1 files changed, 92 insertions, 9 deletions
diff --git a/share/man/man5/periodic.conf.5 b/share/man/man5/periodic.conf.5 index a49aa2b..7755dab 100644 --- a/share/man/man5/periodic.conf.5 +++ b/share/man/man5/periodic.conf.5 @@ -401,22 +401,27 @@ is set to .Pq Vt bool Set to .Dq YES -if you want to run -.Pa /etc/security . +if you want to run the security check. +The security check is another set of +.Xr periodic 8 +scripts. +The system defaults are in +.Pa /etc/periodic/security . +Local scripts should be placed in +.Pa /usr/local/etc/periodic/security . +See the +.Xr periodic 8 +manual page for more information. .It Va daily_status_security_inline .Pq Vt bool Set to .Dq YES -if you want to run -.Pa /etc/security -inline. +if you want the security check output inline. The default is to either mail or log the output according to the value of .Va daily_status_security_output . .It Va daily_status_security_output .Pq Vt str -Where to send the output of -.Pa /etc/security -if +Where to send the output of the security check if .Va daily_status_security_inline is set to .Dq NO . @@ -424,13 +429,91 @@ This variable behaves in the same way as the .Va *_output variables above, namely it can be set either to one or more email addresses or to an absolute file name. +.It Va daily_status_security_chksetuid_enable +.Pq Vt bool +Set to +.Dq YES +to compare the modes and modification times of setuid executables with +the previous day's values. +.It Va daily_status_security_chkmounts_enable +.Pq Vt bool +Set to +.Dq YES +to check for changes mounted filesystems to the previous day's values. .It Va daily_status_security_noamd .Pq Vt bool Set to .Dq YES if you want to ignore .Xr amd 8 -mounts when comparing against yesterdays filesystem mounts. +mounts when comparing against yesterdays filesystem mounts in the +.Va daily_status_security_chkmounts_enable +check. +.It Va daily_status_security_chkuid0_enable +.Pq Vt bool +Set to +.Dq YES +to check +.Pa /etc/master.passwd +for accounts with uid 0. +.It Va daily_status_security_passwdless_enable +.Pq Vt bool +Set to +.Dq YES +to check +.Pa /etc/master.passwd +for accounts with empty passwords. +.It Va daily_status_security_ipfwdenied_enable +.Pq Vt bool +Set to +.Dq YES +to show log entries for packets denied by +.Xr ipfw 8 +since yesterday's check. +.It Va daily_status_security_ipfwlimit_enable +.Pq Vt bool +Set to +.Dq YES +to display +.Xr ipfw 8 +rules that have reached their verbosity limit. +.It Va daily_status_security_ip6fwdenied_enable +.Pq Vt bool +Set to +.Dq YES +to show log entries for packets denied by +.Xr ip6fw 8 +since yesterday's check. +.It Va daily_status_security_ip6fwlimit_enable +.Pq Vt bool +Set to +.Dq YES +to display +.Xr ip6fw 8 +rules that have reached their verbosity limit. +.It Va daily_status_security_kernelmsg_enable +.Pq Vt bool +Set to +.Dq YES +to show new +.Xr dmesg 8 +entries since yesterday's check. +.It Va daily_status_security_loginfail_enable +.Pq Vt bool +Set to +.Dq YES +to display failed logins from +.Pa /var/log/messages +in the previous day. +.It Va daily_status_security_tcpwrap_enable +.Pq Vt bool +Set to +.Dq YES +to display connections denied by tcpwrappers (see +.Xr hosts_access 5 ) +from +.Pa /var/log/messages +during the previous day. .It Va daily_status_mail_rejects_enable .Pq Vt bool Set to |