The NetBSD Project

CVS log for src/etc/security

[BACK] Up to [cvs.NetBSD.org] / src / etc

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.129.2.1 / (download) - annotate - [select for diffs], Fri Aug 11 14:35:25 2023 UTC (7 months, 2 weeks ago) by martin
Branch: netbsd-10
CVS Tags: netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1
Changes since 1.129: +2 -3 lines
Diff to previous 1.129 (colored) next main 1.130 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by riastradh in ticket #319):

	sys/dev/pci/ubsec.c: revision 1.64
	sys/dev/pci/hifn7751.c: revision 1.82
	lib/libc/gen/getentropy.3: revision 1.5
	lib/libc/gen/getentropy.3: revision 1.6
	share/man/man4/rnd.4: revision 1.41
	lib/libc/sys/getrandom.2: revision 1.2
	lib/libc/sys/getrandom.2: revision 1.3
	share/man/man5/rc.conf.5: revision 1.193
	share/man/man7/entropy.7: revision 1.5
	share/man/man7/entropy.7: revision 1.6
	share/man/man7/entropy.7: revision 1.7
	share/man/man7/entropy.7: revision 1.8
	etc/security: revision 1.130
	share/man/man7/entropy.7: revision 1.9
	etc/security: revision 1.131
	sys/crypto/cprng_fast/cprng_fast.c: revision 1.19
	sys/sys/rndio.h: revision 1.3
	tests/lib/libc/sys/t_getrandom.c: revision 1.5
	etc/defaults/rc.conf: revision 1.164
	etc/defaults/rc.conf: revision 1.165
	sys/sys/rndsource.h: revision 1.10
	sys/kern/kern_entropy.c: revision 1.62
	sys/kern/kern_entropy.c: revision 1.63
	sys/kern/kern_entropy.c: revision 1.64
	sys/kern/subr_cprng.c: revision 1.44
	sys/kern/kern_entropy.c: revision 1.65
	sys/kern/kern_clock.c: revision 1.149
	sys/dev/pci/viornd.c: revision 1.22
	share/man/man9/rnd.9: revision 1.32
	sys/kern/subr_prf.c: revision 1.202
	sys/sys/rndsource.h: revision 1.8
	sys/sys/rndsource.h: revision 1.9
	share/man/man7/entropy.7: revision 1.10

1. Reinstate netbsd<=9 entropy estimator to unblock /dev/random, in
   parallel with assessment of only confident entropy sources (seed,
   HWRNG) for security warnings like sshd keys in motd and daily
   insecurity report.

2. Make multiuser boot wait for first /dev/random output soon after
   loading a seed and configuring rndctl, so that getentropy(3) meets
   its contract starting early at boot without introducing blocking
   paths that could cause hangs in init(8) or single-user mode.
   Operators can choose to disable this wait in rc.conf.

3. Fix some bugs left over from reducing the global entropy lock from
   a spin lock at IPL_VM to an adaptive lock at IPL_SOFTSERIAL.

4. Update man pages.

Revision 1.131 / (download) - annotate - [select for diffs], Wed Jul 5 12:07:21 2023 UTC (8 months, 3 weeks ago) by martin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.130: +2 -2 lines
Diff to previous 1.130 (colored) to selected 1.9.2.1 (colored)

Fix sysctl invocation testing for missing entropy.

Revision 1.130 / (download) - annotate - [select for diffs], Fri Jun 30 21:42:29 2023 UTC (8 months, 4 weeks ago) by riastradh
Branch: MAIN
Changes since 1.129: +2 -3 lines
Diff to previous 1.129 (colored) to selected 1.9.2.1 (colored)

security(5): Check kern.entropy.needed for confident entropy.

Don't test whether a non-blocking read from /dev/random would return
data.

For the sake of availability, /dev/random will unblock based on sources
like timer interrupts, which we can't confidently assert anything about
the actual unpredictability of.

Here, the goal is to highlight systems that have neither obtained
entropy from an HWRNG with a confident entropy assessment, nor been
seeded from a source the operator knows about.

XXX pullup-10

Revision 1.129 / (download) - annotate - [select for diffs], Thu Nov 4 12:40:00 2021 UTC (2 years, 4 months ago) by nia
Branch: MAIN
CVS Tags: netbsd-10-base
Branch point for: netbsd-10
Changes since 1.128: +2 -1 lines
Diff to previous 1.128 (colored) to selected 1.9.2.1 (colored)

Recognize argon2 passwords as valid in daily security reports.

from RVP in misc/56486

Revision 1.128 / (download) - annotate - [select for diffs], Sun Jan 10 23:24:25 2021 UTC (3 years, 2 months ago) by riastradh
Branch: MAIN
CVS Tags: cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.127: +14 -1 lines
Diff to previous 1.127 (colored) to selected 1.9.2.1 (colored)

Various entropy integration improvements.

- New /etc/security check for entropy in daily security report.

- New /etc/rc.d/entropy script runs (after random_seed and rndctl) to
  check for entropy at boot -- in rc.conf, you can:

  . set `entropy=check' to halt multiuser boot and enter single-user
    mode if not enough entropy

  . set `entropy=wait' to make multiuser boot wait until enough entropy

  Default is to always boot without waiting -- and rely on other
  channels like security report to alert the operator if there's a
  problem.

- New man page entropy(7) discussing the higher-level concepts and
  system integration with cross-references.

- New paragraph in afterboot(8) about entropy citing entropy(7) for
  more details.

This change addresses many of the issues discussed in security/55659.
This is a first draft; happy to take improvements to the man pages and
scripted messages to improve clarity.

I considered changing motd to include an entropy warning with a
reference to the entropy(7) man page, but it's a little trickier:
- Not sure it's appropriate for all users to see at login rather than
  users who have power to affect the entropy estimate (maybe it is,
  just haven't decided).
- We only have a mechanism for changing once at boot; the message would
  remain until next boot even if an operator adds enough entropy.
- The mechanism isn't really conducive to making a message appear
  conditionally from boot to boot.

Revision 1.127 / (download) - annotate - [select for diffs], Wed Dec 2 14:18:13 2020 UTC (3 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.126: +2 -2 lines
Diff to previous 1.126 (colored) to selected 1.9.2.1 (colored)

Update default pkgsrc database location from /var/db/pkg to /usr/pkg/pkgdb.

Revision 1.122.4.3 / (download) - annotate - [select for diffs], Mon Apr 13 07:45:38 2020 UTC (3 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.122.4.2: +2 -2 lines
Diff to previous 1.122.4.2 (colored) to branchpoint 1.122 (colored) next main 1.123 (colored) to selected 1.9.2.1 (colored)

Mostly merge changes from HEAD upto 20200411

Revision 1.122.4.2 / (download) - annotate - [select for diffs], Wed Apr 8 14:03:56 2020 UTC (3 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.122.4.1: +8 -1 lines
Diff to previous 1.122.4.1 (colored) to branchpoint 1.122 (colored) to selected 1.9.2.1 (colored)

Merge changes from current as of 20200406

Revision 1.126 / (download) - annotate - [select for diffs], Fri Dec 6 14:43:30 2019 UTC (4 years, 3 months ago) by riastradh
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp
Changes since 1.125: +8 -1 lines
Diff to previous 1.125 (colored) to selected 1.9.2.1 (colored)

Save the entropy seed daily in /etc/security.

Revision 1.125 / (download) - annotate - [select for diffs], Wed Sep 18 22:27:55 2019 UTC (4 years, 6 months ago) by uwe
Branch: MAIN
CVS Tags: phil-wifi-20191119
Changes since 1.124: +3 -3 lines
Diff to previous 1.124 (colored) to selected 1.9.2.1 (colored)

Use $file instead of $(echo $file).  I don't think the extra round of
word expansions was really intended here.

Revision 1.122.4.1 / (download) - annotate - [select for diffs], Mon Jun 10 21:42:39 2019 UTC (4 years, 9 months ago) by christos
Branch: phil-wifi
Changes since 1.122: +16 -13 lines
Diff to previous 1.122 (colored) to selected 1.9.2.1 (colored)

Sync with HEAD

Revision 1.122.2.2 / (download) - annotate - [select for diffs], Sat Oct 20 06:58:18 2018 UTC (5 years, 5 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.122.2.1: +2 -2 lines
Diff to previous 1.122.2.1 (colored) to branchpoint 1.122 (colored) next main 1.123 (colored) to selected 1.9.2.1 (colored)

Sync with head

Revision 1.124 / (download) - annotate - [select for diffs], Thu Oct 4 11:50:34 2018 UTC (5 years, 5 months ago) by kre
Branch: MAIN
CVS Tags: phil-wifi-20190609, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9
Changes since 1.123: +2 -2 lines
Diff to previous 1.123 (colored) to selected 1.9.2.1 (colored)


Fix an obvious botch in the previous rev, found by martin@

Revision 1.122.2.1 / (download) - annotate - [select for diffs], Sun Sep 30 01:45:07 2018 UTC (5 years, 5 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.122: +16 -13 lines
Diff to previous 1.122 (colored) to selected 1.9.2.1 (colored)

Ssync with HEAD

Revision 1.123 / (download) - annotate - [select for diffs], Sun Sep 23 23:48:33 2018 UTC (5 years, 6 months ago) by kre
Branch: MAIN
CVS Tags: pgoyette-compat-0930
Changes since 1.122: +16 -13 lines
Diff to previous 1.122 (colored) to selected 1.9.2.1 (colored)


Convert uses of test (aka '[') to use only posix specified forms,
mostly just on general principle...   this resulted in one or two minor
code reformattings to keep 80 char limits - a few needless uses of
quotes ("no" ??) were also removed (sh is not C. strings are strings
without quotes around them...)

Revision 1.122 / (download) - annotate - [select for diffs], Sat Jan 6 23:44:06 2018 UTC (6 years, 2 months ago) by mlelstv
Branch: MAIN
CVS Tags: phil-wifi-base, pgoyette-compat-base, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.121: +5 -4 lines
Diff to previous 1.121 (colored) to selected 1.9.2.1 (colored)

Use sysctl to retrieve iostat names instead of parsing possibly
truncated iostat output.

Check dkctl listwedges output with grep.

Fixes PR 59205.

Revision 1.121 / (download) - annotate - [select for diffs], Mon Feb 29 16:16:42 2016 UTC (8 years ago) by riastradh
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Changes since 1.120: +11 -2 lines
Diff to previous 1.120 (colored) to selected 1.9.2.1 (colored)

Record current raid configurations too in /etc/security.

Revision 1.120 / (download) - annotate - [select for diffs], Mon Apr 20 22:46:35 2015 UTC (8 years, 11 months ago) by pgoyette
Branch: MAIN
Changes since 1.119: +2 -2 lines
Diff to previous 1.119 (colored) to selected 1.9.2.1 (colored)

Set the redirection correctly, so that stderr gets duped to the
already redirected stdout, rather than duping stdout to stderr!

Without this fix, the disklabel output is included in the log file
rather than being discarded as intended.  (The purpose of running
disklabel this first time is only to check for success.)

Revision 1.119 / (download) - annotate - [select for diffs], Sat Feb 14 19:46:55 2015 UTC (9 years, 1 month ago) by nakayama
Branch: MAIN
Changes since 1.118: +2 -2 lines
Diff to previous 1.118 (colored) to selected 1.9.2.1 (colored)

Avoid nfs devices correctly.

Revision 1.118 / (download) - annotate - [select for diffs], Sat Dec 13 02:17:35 2014 UTC (9 years, 3 months ago) by uebayasi
Branch: MAIN
Changes since 1.117: +22 -23 lines
Diff to previous 1.117 (colored) to selected 1.9.2.1 (colored)

Indent and space fixes.

Revision 1.117 / (download) - annotate - [select for diffs], Sun Nov 23 16:36:03 2014 UTC (9 years, 4 months ago) by christos
Branch: MAIN
Changes since 1.116: +28 -13 lines
Diff to previous 1.116 (colored) to selected 1.9.2.1 (colored)

- generate the list of disks only once and select from them later
- don't generate empty/useless files when disklabel or dkctl don't have data

Revision 1.116 / (download) - annotate - [select for diffs], Wed Aug 27 13:56:02 2014 UTC (9 years, 7 months ago) by apb
Branch: MAIN
Changes since 1.115: +22 -11 lines
Diff to previous 1.115 (colored) to selected 1.9.2.1 (colored)

Split some long lines.

Revision 1.111.2.2 / (download) - annotate - [select for diffs], Tue Aug 19 23:45:50 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.111.2.1: +31 -8 lines
Diff to previous 1.111.2.1 (colored) to branchpoint 1.111 (colored) next main 1.112 (colored) to selected 1.9.2.1 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.110.4.2 / (download) - annotate - [select for diffs], Thu May 22 11:27:18 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.110.4.1: +38 -12 lines
Diff to previous 1.110.4.1 (colored) to branchpoint 1.110 (colored) next main 1.111 (colored) to selected 1.9.2.1 (colored)

sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.115 / (download) - annotate - [select for diffs], Wed Nov 6 19:37:05 2013 UTC (10 years, 4 months ago) by spz
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Changes since 1.114: +21 -6 lines
Diff to previous 1.114 (colored) to selected 1.9.2.1 (colored)

Introduce a variable for security.conf, default empty, to list users
whose home is (allowed to be) owned by another user.

It's a separate variable and not just check_passwd_permit_dups so I can
make security shut up about my uucp users.

Fixes the second half of PR misc/36063

Revision 1.114 / (download) - annotate - [select for diffs], Wed Nov 6 19:30:20 2013 UTC (10 years, 4 months ago) by spz
Branch: MAIN
Changes since 1.113: +10 -3 lines
Diff to previous 1.113 (colored) to selected 1.9.2.1 (colored)

having more than one line with the same group name and gid is not only
allowed, it's even recommended for groups with lots of members, so
do not warn about duplicate group name lines if the gid is the same

Revision 1.113 / (download) - annotate - [select for diffs], Sun Sep 8 08:19:40 2013 UTC (10 years, 6 months ago) by prlw1
Branch: MAIN
Changes since 1.112: +2 -1 lines
Diff to previous 1.112 (colored) to selected 1.9.2.1 (colored)

Add defaults for pkg_info and pkg_admin variables in case pkgpath.conf
is not installed.

Revision 1.111.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 06:26:21 2013 UTC (10 years, 9 months ago) by tls
Branch: tls-maxphys
Changes since 1.111: +7 -4 lines
Diff to previous 1.111 (colored) to selected 1.9.2.1 (colored)

resync from head

Revision 1.112 / (download) - annotate - [select for diffs], Wed May 1 05:36:25 2013 UTC (10 years, 10 months ago) by agc
Branch: MAIN
CVS Tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900
Changes since 1.111: +7 -4 lines
Diff to previous 1.111 (colored) to selected 1.9.2.1 (colored)

Fix for problematic paths in /etc/daily and /etc/security reported in
PR/47645.

Add a separate file which contains the paths for the pkg_admin and
pkg_info utilities. This is called /etc/pkgpath.conf (to distinguish it
from pkg.conf).

Thanks also to Edgar Fuss for the sanity check.

Revision 1.110.4.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:02:56 2012 UTC (11 years, 11 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.110: +12 -8 lines
Diff to previous 1.110 (colored) to selected 1.9.2.1 (colored)

sync with head

Revision 1.111 / (download) - annotate - [select for diffs], Thu Apr 5 09:09:27 2012 UTC (11 years, 11 months ago) by spz
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, agc-symver-base, agc-symver
Branch point for: tls-maxphys
Changes since 1.110: +12 -8 lines
Diff to previous 1.110 (colored) to selected 1.9.2.1 (colored)

change security so that there is a configuration value for the list of
users who will not be considered for duplicate uid check.
Seed it with 'toor' in defaults/security.conf.

Revision 1.109.2.1 / (download) - annotate - [select for diffs], Sat Mar 5 15:08:41 2011 UTC (13 years ago) by bouyer
Branch: bouyer-quota2
Changes since 1.109: +3 -3 lines
Diff to previous 1.109 (colored) next main 1.110 (colored) to selected 1.9.2.1 (colored)

Sync with HEAD

Revision 1.110 / (download) - annotate - [select for diffs], Wed Mar 2 17:00:28 2011 UTC (13 years ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase
Branch point for: yamt-pagecache
Changes since 1.109: +3 -3 lines
Diff to previous 1.109 (colored) to selected 1.9.2.1 (colored)

too much quoting. pointed by anon ymous

Revision 1.109 / (download) - annotate - [select for diffs], Mon Dec 27 03:38:52 2010 UTC (13 years, 3 months ago) by christos
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231, bouyer-quota2-base
Branch point for: bouyer-quota2
Changes since 1.108: +14 -14 lines
Diff to previous 1.108 (colored) to selected 1.9.2.1 (colored)

`` -> $()

Revision 1.108 / (download) - annotate - [select for diffs], Fri Feb 5 16:29:02 2010 UTC (14 years, 1 month ago) by jmmv
Branch: MAIN
Changes since 1.107: +18 -7 lines
Diff to previous 1.107 (colored) to selected 1.9.2.1 (colored)

Deprecate the pkgdb_dir settings from daily.conf and security.conf in
favor of the PKG_DBDIR variable in /etc/pkg_install.conf.  The purpose
of this is to only have to define the location of the packages database
in a single place and have all other system components pick it up.

pkgdb_dir is still honored if defined and the scripts will spit out a
warning in that case, asking the administrator to migrate to the
PKG_DBDIR setting.  We can't remove this compatibility workaround until,
at least, after NetBSD 6 is released.

Revision 1.107 / (download) - annotate - [select for diffs], Tue Jan 19 22:08:11 2010 UTC (14 years, 2 months ago) by jmmv
Branch: MAIN
Changes since 1.106: +20 -2 lines
Diff to previous 1.106 (colored) to selected 1.9.2.1 (colored)

Add the fetch_pkg_vulnerabilities option to the daily script to keep the
packages vulnerability database up to date.  This will only fetch the
file from the server if it has changed since the last run.

Add the check_pkg_vulnerabilities and check_pkg_signatures options to the
security script to check that the installed packages are sane.

All of these options are enabled by default but they will only run if
there is, at least, one installed package.

Revision 1.106 / (download) - annotate - [select for diffs], Tue Jan 27 10:32:18 2009 UTC (15 years, 2 months ago) by haad
Branch: MAIN
CVS Tags: matt-premerge-20091211, jym-xensuspend-nbase, jym-xensuspend-base, jym-xensuspend
Changes since 1.105: +17 -2 lines
Diff to previous 1.105 (colored) to selected 1.9.2.1 (colored)

Add support for lvm to security script. Backup lvm configuration to /var/backup/lvm with other system backups. Disable lvm check until MKLVM is enabled by default. no objections on tech-userlevel@.

Revision 1.103.2.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:29:50 2008 UTC (16 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.103.2.1: +20 -8 lines
Diff to previous 1.103.2.1 (colored) next main 1.104 (colored) to selected 1.9.2.1 (colored)

sync with HEAD

Revision 1.105.4.2 / (download) - annotate - [select for diffs], Fri Nov 23 15:51:28 2007 UTC (16 years, 4 months ago) by dholland
Branch: mjf-devfs
Changes since 1.105.4.1: +986 -0 lines
Diff to previous 1.105.4.1 (colored) to branchpoint 1.105 (colored) next main 1.106 (colored) to selected 1.9.2.1 (colored)

Handle non-trivial NIS compat entries (like +joe:::::::::) in the password
file. Fixes (my own) PR bin/33138.

reviewed: christos

Revision 1.105.4.1, Fri Nov 23 15:51:27 2007 UTC (16 years, 4 months ago) by dholland
Branch: mjf-devfs
Changes since 1.105: +0 -986 lines
FILE REMOVED

file security was added on branch mjf-devfs on 2007-11-23 15:51:28 +0000

Revision 1.105 / (download) - annotate - [select for diffs], Fri Nov 23 15:51:27 2007 UTC (16 years, 4 months ago) by dholland
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, mjf-devfs2-base2, mjf-devfs2-base, mjf-devfs2, mjf-devfs-base, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base, cube-autoconf-base, cube-autoconf
Branch point for: mjf-devfs
Changes since 1.104: +20 -8 lines
Diff to previous 1.104 (colored) to selected 1.9.2.1 (colored)

Handle non-trivial NIS compat entries (like +joe:::::::::) in the password
file. Fixes (my own) PR bin/33138.

reviewed: christos

Revision 1.103.2.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:10:26 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.103: +3 -2 lines
Diff to previous 1.103 (colored) to selected 1.9.2.1 (colored)

sync with HEAD

Revision 1.100.2.1.2.2 / (download) - annotate - [select for diffs], Mon Sep 24 05:12:42 2007 UTC (16 years, 6 months ago) by wrstuden
Branch: wrstuden-fixsa
Changes since 1.100.2.1.2.1: +3 -2 lines
Diff to previous 1.100.2.1.2.1 (colored) next main 1.100.2.2 (colored) to selected 1.9.2.1 (colored)

Catch up with netbsd-4.

Revision 1.100.2.4 / (download) - annotate - [select for diffs], Mon Sep 17 20:27:16 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-1-RELEASE, netbsd-4-0
Changes since 1.100.2.3: +3 -2 lines
Diff to previous 1.100.2.3 (colored) to branchpoint 1.100 (colored) next main 1.101 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #883):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.94.2.3.2.3 / (download) - annotate - [select for diffs], Mon Sep 17 20:08:21 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-3-1
Changes since 1.94.2.3.2.2: +2 -1 lines
Diff to previous 1.94.2.3.2.2 (colored) to branchpoint 1.94.2.3 (colored) next main 1.94.2.4 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #1841):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.94.2.1.2.3 / (download) - annotate - [select for diffs], Mon Sep 17 20:07:16 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-3-0
Changes since 1.94.2.1.2.2: +2 -1 lines
Diff to previous 1.94.2.1.2.2 (colored) to branchpoint 1.94.2.1 (colored) next main 1.94.2.2 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #1841):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.94.2.6 / (download) - annotate - [select for diffs], Mon Sep 17 20:05:07 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-3
Changes since 1.94.2.5: +2 -1 lines
Diff to previous 1.94.2.5 (colored) to branchpoint 1.94 (colored) next main 1.95 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #1841):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.88.6.2 / (download) - annotate - [select for diffs], Mon Sep 17 20:00:07 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-2-1
Changes since 1.88.6.1: +2 -1 lines
Diff to previous 1.88.6.1 (colored) to branchpoint 1.88 (colored) next main 1.89 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #11367):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.88.2.2 / (download) - annotate - [select for diffs], Mon Sep 17 19:58:48 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-2-0
Changes since 1.88.2.1: +2 -1 lines
Diff to previous 1.88.2.1 (colored) to branchpoint 1.88 (colored) next main 1.89 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #11367):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.88.4.2 / (download) - annotate - [select for diffs], Mon Sep 17 19:57:09 2007 UTC (16 years, 6 months ago) by bouyer
Branch: netbsd-2
Changes since 1.88.4.1: +2 -1 lines
Diff to previous 1.88.4.1 (colored) to branchpoint 1.88 (colored) next main 1.89 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by adrianp in ticket #11367):
	etc/defaults/security.conf: revision 1.20
	etc/security: revision 1.104
The location of the pkg_info binary can now be specified in
/etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.100.2.1.2.1 / (download) - annotate - [select for diffs], Mon Sep 3 06:57:48 2007 UTC (16 years, 6 months ago) by wrstuden
Branch: wrstuden-fixsa
Changes since 1.100.2.1: +16 -8 lines
Diff to previous 1.100.2.1 (colored) to selected 1.9.2.1 (colored)

Sync w/ NetBSD-4-RC_1

Revision 1.104 / (download) - annotate - [select for diffs], Mon Aug 27 19:57:02 2007 UTC (16 years, 7 months ago) by adrianp
Branch: MAIN
Changes since 1.103: +3 -2 lines
Diff to previous 1.103 (colored) to selected 1.9.2.1 (colored)

The location of the pkg_info binary can now be specified in /etc/security.conf.
The default remains as /usr/sbin/pkg_info.  This should fix PR# 36746.

Revision 1.100.2.3 / (download) - annotate - [select for diffs], Fri Aug 24 16:32:01 2007 UTC (16 years, 7 months ago) by liamjfoy
Branch: netbsd-4
CVS Tags: netbsd-4-0-RC1
Changes since 1.100.2.2: +15 -7 lines
Diff to previous 1.100.2.2 (colored) to branchpoint 1.100 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by tron in ticket #824):
	etc/security: revision 1.103
Add code to monitor the disk wedges (see dk(4)) configured on the
system. Based on a patch contributed by Andreas Wrede in PR misc/36747.

Revision 1.103 / (download) - annotate - [select for diffs], Thu Aug 9 07:50:58 2007 UTC (16 years, 7 months ago) by tron
Branch: MAIN
Branch point for: matt-armv6
Changes since 1.102: +15 -7 lines
Diff to previous 1.102 (colored) to selected 1.9.2.1 (colored)

Add code to monitor the disk wedges (see dk(4)) configured on the
system. Based on a patch contributed by Andreas Wrede in PR misc/36747.

Revision 1.94.2.3.2.2 / (download) - annotate - [select for diffs], Thu Jun 28 18:14:49 2007 UTC (16 years, 9 months ago) by ghen
Branch: netbsd-3-1
CVS Tags: netbsd-3-1-1-RELEASE
Changes since 1.94.2.3.2.1: +1 -1 lines
Diff to previous 1.94.2.3.2.1 (colored) to branchpoint 1.94.2.3 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by martti in ticket #1800):
	etc/monthly: revision 1.11
	etc/weekly: revision 1.23
	etc/security: revision 1.102
	etc/daily: revision 1.70
Use "mktemp -d -t xxx" to create the temporary directories. This will use
TMPDIR environment variable if set, otherwise use /tmp.  (misc/35544)

Revision 1.94.2.1.2.2 / (download) - annotate - [select for diffs], Thu Jun 28 18:14:39 2007 UTC (16 years, 9 months ago) by ghen
Branch: netbsd-3-0
CVS Tags: netbsd-3-0-3-RELEASE
Changes since 1.94.2.1.2.1: +1 -1 lines
Diff to previous 1.94.2.1.2.1 (colored) to branchpoint 1.94.2.1 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by martti in ticket #1800):
	etc/monthly: revision 1.11
	etc/weekly: revision 1.23
	etc/security: revision 1.102
	etc/daily: revision 1.70
Use "mktemp -d -t xxx" to create the temporary directories. This will use
TMPDIR environment variable if set, otherwise use /tmp.  (misc/35544)

Revision 1.94.2.5 / (download) - annotate - [select for diffs], Thu Jun 7 11:22:33 2007 UTC (16 years, 9 months ago) by liamjfoy
Branch: netbsd-3
Changes since 1.94.2.4: +1 -1 lines
Diff to previous 1.94.2.4 (colored) to branchpoint 1.94 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by martti in ticket #1800):
	etc/monthly: revision 1.11
	etc/weekly: revision 1.23
	etc/security: revision 1.102
	etc/daily: revision 1.70
Use "mktemp -d -t xxx" to create the temporary directories. This will use
TMPDIR environment variable if set, otherwise use /tmp.  (misc/35544)

Revision 1.100.2.2 / (download) - annotate - [select for diffs], Wed Jun 6 14:58:14 2007 UTC (16 years, 9 months ago) by liamjfoy
Branch: netbsd-4
Changes since 1.100.2.1: +1 -1 lines
Diff to previous 1.100.2.1 (colored) to branchpoint 1.100 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by martti in ticket #708):
	etc/monthly: revision 1.11
	etc/weekly: revision 1.23
	etc/security: revision 1.102
	etc/daily: revision 1.70
Use "mktemp -d -t xxx" to create the temporary directories. This will use
TMPDIR environment variable if set, otherwise use /tmp.  (misc/35544)

Revision 1.102 / (download) - annotate - [select for diffs], Wed Jun 6 13:30:48 2007 UTC (16 years, 9 months ago) by martti
Branch: MAIN
CVS Tags: matt-mips64-base, matt-mips64, hpcarm-cleanup
Changes since 1.101: +2 -2 lines
Diff to previous 1.101 (colored) to selected 1.9.2.1 (colored)

Use "mktemp -d -t xxx" to create the temporary directories. This will use
TMPDIR environment variable if set, otherwise use /tmp.  (misc/35544)

Revision 1.88.6.1 / (download) - annotate - [select for diffs], Sun May 27 21:27:01 2007 UTC (16 years, 10 months ago) by bouyer
Branch: netbsd-2-1
Changes since 1.88: +3 -3 lines
Diff to previous 1.88 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #11309):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.88.2.1 / (download) - annotate - [select for diffs], Sun May 27 21:26:12 2007 UTC (16 years, 10 months ago) by bouyer
Branch: netbsd-2-0
Changes since 1.88: +3 -3 lines
Diff to previous 1.88 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #11309):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.88.4.1 / (download) - annotate - [select for diffs], Sun May 27 21:25:13 2007 UTC (16 years, 10 months ago) by bouyer
Branch: netbsd-2
Changes since 1.88: +3 -3 lines
Diff to previous 1.88 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #11309):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.94.2.3.2.1 / (download) - annotate - [select for diffs], Sun May 27 20:41:39 2007 UTC (16 years, 10 months ago) by bouyer
Branch: netbsd-3-1
Changes since 1.94.2.3: +2 -2 lines
Diff to previous 1.94.2.3 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #1777):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.94.2.1.2.1 / (download) - annotate - [select for diffs], Sun May 27 20:40:28 2007 UTC (16 years, 10 months ago) by bouyer
Branch: netbsd-3-0
Changes since 1.94.2.1: +2 -2 lines
Diff to previous 1.94.2.1 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #1777):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.94.2.4 / (download) - annotate - [select for diffs], Sun May 27 20:39:43 2007 UTC (16 years, 10 months ago) by bouyer
Branch: netbsd-3
Changes since 1.94.2.3: +2 -2 lines
Diff to previous 1.94.2.3 (colored) to branchpoint 1.94 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #1777):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.100.2.1 / (download) - annotate - [select for diffs], Tue May 8 09:53:46 2007 UTC (16 years, 10 months ago) by pavel
Branch: netbsd-4
Branch point for: wrstuden-fixsa
Changes since 1.100: +3 -3 lines
Diff to previous 1.100 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by jnemeth in ticket #627):
	etc/security: revision 1.101
PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.101 / (download) - annotate - [select for diffs], Tue Mar 27 08:37:58 2007 UTC (17 years ago) by jnemeth
Branch: MAIN
Changes since 1.100: +3 -3 lines
Diff to previous 1.100 (colored) to selected 1.9.2.1 (colored)

PR/36058 -- fix check for group/other writable home directories from
Jukka Salmi

Revision 1.94.2.3 / (download) - annotate - [select for diffs], Fri Oct 6 20:51:09 2006 UTC (17 years, 5 months ago) by ghen
Branch: netbsd-3
CVS Tags: netbsd-3-1-RELEASE, netbsd-3-1-RC4
Branch point for: netbsd-3-1
Changes since 1.94.2.2: +36 -10 lines
Diff to previous 1.94.2.2 (colored) to branchpoint 1.94 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by tron in ticket #1532):
	etc/security: revision 1.100
Improve security check for "/etc/exports":
1.) Properly handle line continuation and network exports.
2.) Make the report more compact.
Patch contributed by Jukka Salmi in PR bin/24583.

Revision 1.100 / (download) - annotate - [select for diffs], Tue Sep 26 08:32:40 2006 UTC (17 years, 6 months ago) by tron
Branch: MAIN
CVS Tags: netbsd-4-base
Branch point for: netbsd-4
Changes since 1.99: +37 -11 lines
Diff to previous 1.99 (colored) to selected 1.9.2.1 (colored)

Improve security check for "/etc/exports":
1.) Properly handle line continuation and network exports.
2.) Make the report more compact.

Patch contributed by Jukka Salmi in PR bin/24583.

Revision 1.99 / (download) - annotate - [select for diffs], Sat Sep 23 04:07:01 2006 UTC (17 years, 6 months ago) by jmcneill
Branch: MAIN
Changes since 1.98: +2 -1 lines
Diff to previous 1.98 (colored) to selected 1.9.2.1 (colored)

PR #26490: /etc/security is not aware of sha1 passwords

Revision 1.94.2.2 / (download) - annotate - [select for diffs], Wed Jul 12 14:23:25 2006 UTC (17 years, 8 months ago) by tron
Branch: netbsd-3
CVS Tags: netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1
Changes since 1.94.2.1: +26 -6 lines
Diff to previous 1.94.2.1 (colored) to branchpoint 1.94 (colored) to selected 1.9.2.1 (colored)

Pull up following revision(s) (requested by lukem in ticket #1377):
	etc/security: revision 1.98
	share/man/man5/security.conf.5: revision 1.30 by patch
	etc/defaults/security.conf: revision 1.18
Implement check_devices_ignore_paths, which is a list of paths to
avoid traversing during check_devices.

Revision 1.98 / (download) - annotate - [select for diffs], Thu May 25 02:38:10 2006 UTC (17 years, 10 months ago) by lukem
Branch: MAIN
CVS Tags: abandoned-netbsd-4-base, abandoned-netbsd-4
Changes since 1.97: +27 -7 lines
Diff to previous 1.97 (colored) to selected 1.9.2.1 (colored)

Implement check_devices_ignore_paths, which is a list of paths to
avoid traversing during check_devices.

Revision 1.97 / (download) - annotate - [select for diffs], Mon Apr 17 07:38:53 2006 UTC (17 years, 11 months ago) by veego
Branch: MAIN
Changes since 1.96: +2 -2 lines
Diff to previous 1.96 (colored) to selected 1.9.2.1 (colored)

Don't try to backup a 'nfs' disklabel, which will happen because of the
recent iostat changes.
Patch supplied in pr# 33274 by Geoff C. Wing.

Revision 1.96 / (download) - annotate - [select for diffs], Sun Jan 29 23:17:24 2006 UTC (18 years, 2 months ago) by rpaulo
Branch: MAIN
Changes since 1.95: +3 -3 lines
Diff to previous 1.95 (colored) to selected 1.9.2.1 (colored)

PR 32666: /etc/security may cause tapes to rewind. By Duncan McEwan.

Revision 1.94.2.1 / (download) - annotate - [select for diffs], Wed Apr 13 15:56:38 2005 UTC (18 years, 11 months ago) by tron
Branch: netbsd-3
CVS Tags: netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE
Branch point for: netbsd-3-0
Changes since 1.94: +3 -3 lines
Diff to previous 1.94 (colored) to selected 1.9.2.1 (colored)

Pull up revision 1.95 (requested by peter in ticket #135):
Allow an underscore as first character and embedded underscores & dots
for login and group names.
Fixes PR misc/29913 from Arto Selonen.

Revision 1.95 / (download) - annotate - [select for diffs], Mon Apr 11 15:46:42 2005 UTC (18 years, 11 months ago) by peter
Branch: MAIN
Changes since 1.94: +3 -3 lines
Diff to previous 1.94 (colored) to selected 1.9.2.1 (colored)

Allow an underscore as first character and embedded underscores & dots
for login and group names.

Fixes PR misc/29913 from Arto Selonen.

Revision 1.94 / (download) - annotate - [select for diffs], Sat Feb 5 15:26:37 2005 UTC (19 years, 1 month ago) by jdolecek
Branch: MAIN
CVS Tags: netbsd-3-base
Branch point for: netbsd-3
Changes since 1.93: +9 -3 lines
Diff to previous 1.93 (colored) to selected 1.9.2.1 (colored)

add a check_passwd_permin_nonalpha option, which changes the passwd
test to permit non-alphanumeric characters in login names

Revision 1.93 / (download) - annotate - [select for diffs], Sun Nov 21 19:00:12 2004 UTC (19 years, 4 months ago) by kim
Branch: MAIN
Changes since 1.92: +3 -1 lines
Diff to previous 1.92 (colored) to selected 1.9.2.1 (colored)

When checking /etc/exports, account for "-network=XXX" as restricting
the mount (i.e. it is not considered globally exported).

Fixes PR: 26890

Revision 1.92 / (download) - annotate - [select for diffs], Tue Sep 28 15:03:58 2004 UTC (19 years, 6 months ago) by erh
Branch: MAIN
Changes since 1.91: +7 -4 lines
Diff to previous 1.91 (colored) to selected 1.9.2.1 (colored)

PR misc/7716: add configuration options find_core_ignore_fstypes and
check_devices_ignore_fstypes to allow the filesystem types that are
ignored during the daily and security runs to be adjusted.

Revision 1.91 / (download) - annotate - [select for diffs], Fri Jul 23 06:12:16 2004 UTC (19 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.90: +21 -26 lines
Diff to previous 1.90 (colored) to selected 1.9.2.1 (colored)

Merge /etc/mtree/special & /etc/mtree/special.local using "mtree -M".
This allows users to override mtree/special entries in mtree/special.local,
which is useful if you've replaced a directory with a symlink (for example).
This effectively makes $check_mtree_follow_symlinks=YES pointless, but
I'm retaining that for compatibility reasons.

Fix bug in generation of $MPBYUID (used "/^+/" instead of "/^\+/" as a regex),
which has existed for a long time but only failed with our awk; GNU awk seems
to have permitted this.  (This meant that the duplicate UID check was broken
when using our awk.)

Rename some temp files to more accurately reflect their purpose, to
aid debugging.

Revision 1.90 / (download) - annotate - [select for diffs], Fri Apr 9 17:33:35 2004 UTC (19 years, 11 months ago) by kim
Branch: MAIN
Changes since 1.89: +2 -2 lines
Diff to previous 1.89 (colored) to selected 1.9.2.1 (colored)

Catch STDERR from /etc/security.local (not just STDOUT).

Revision 1.89 / (download) - annotate - [select for diffs], Fri Apr 2 13:13:47 2004 UTC (19 years, 11 months ago) by jmmv
Branch: MAIN
Changes since 1.88: +3 -1 lines
Diff to previous 1.88 (colored) to selected 1.9.2.1 (colored)

Introduce and use the rcvar_manpage variable, which contains the manual page
name where the user should look at for documentation about rcvar.  It defaults
to 'rc.subr(5)', as rc.subr is mainly used by rc.d scripts.

This variable is useful to let the daily, weekly, monthly and security scripts
tune the warning message shown when any of the variables they handle is not
properly set.

Closes PR misc/23908.

Revision 1.88 / (download) - annotate - [select for diffs], Mon Feb 9 09:04:13 2004 UTC (20 years, 1 month ago) by jdolecek
Branch: MAIN
CVS Tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE
Branch point for: netbsd-2-1, netbsd-2-0, netbsd-2
Changes since 1.87: +2 -2 lines
Diff to previous 1.87 (colored) to selected 1.9.2.1 (colored)

add missing && in the home directory group writability condition;
gawk somehow coped even without (defaults to && ?), but nawk printed
bogus warnings (defaults to || ?)

Revision 1.87 / (download) - annotate - [select for diffs], Wed Nov 19 20:28:19 2003 UTC (20 years, 4 months ago) by jhawk
Branch: MAIN
Changes since 1.86: +3 -2 lines
Diff to previous 1.86 (colored) to selected 1.9.2.1 (colored)

Provide a workaround for PR bin/12900.
When /dev is an fdesc, and /dev/tty is stat()ed without a controlling tty,
a "Device not configured" error is returned.

Filter mtree's stderr to ignore this error.

If fdesc is fixed to not behave in this fashion, this workaround can
be removed; bin/12900 should remain open until that time.

Revision 1.86 / (download) - annotate - [select for diffs], Tue Nov 18 03:30:40 2003 UTC (20 years, 4 months ago) by jhawk
Branch: MAIN
Changes since 1.85: +3 -2 lines
Diff to previous 1.85 (colored) to selected 1.9.2.1 (colored)

In check_varmail (mailbox ownership/permissions check):
  Make ls -A explicit, to help n debugging when not run as root
    (-A is implied when ls is run as root)
  Ignore dotfiles, as they are not mailboxes (e.g. .jhawk.pop)

Revision 1.85 / (download) - annotate - [select for diffs], Tue Nov 18 03:23:53 2003 UTC (20 years, 4 months ago) by jhawk
Branch: MAIN
Changes since 1.84: +15 -8 lines
Diff to previous 1.84 (colored) to selected 1.9.2.1 (colored)

XXX: note pairwise cascaded test inversion in permit_star.

Add checkyesno check_homes_permit_usergroups to allow group writability
  when the groupname matches the username.  Defaults to off.

Revision 1.84 / (download) - annotate - [select for diffs], Wed Oct 1 04:29:03 2003 UTC (20 years, 6 months ago) by jhawk
Branch: MAIN
Changes since 1.83: +6 -4 lines
Diff to previous 1.83 (colored) to selected 1.9.2.1 (colored)

Suppress output when running security.local if it produces no output.
/etc/security should produce no output (and thus suppress the report)
when nothing is wrong.

While we're here, use printf instead of two echos, like the rest of
the script.

Revision 1.83 / (download) - annotate - [select for diffs], Fri Feb 21 22:47:51 2003 UTC (21 years, 1 month ago) by jhawk
Branch: MAIN
Changes since 1.82: +4 -4 lines
Diff to previous 1.82 (colored) to selected 1.9.2.1 (colored)

Use $diff_options when running diff in /etc/security.
Default diff_options to -u, for unified-format context diffs,
because context is essential to a useful evaluation of differences.
This represents a behavior change.

Implements change-request PR security/17247 from
Takahiro Kambe <taca@sky.yamashina.kyoto.jp>.

Revision 1.82 / (download) - annotate - [select for diffs], Thu Feb 13 02:42:06 2003 UTC (21 years, 1 month ago) by jhawk
Branch: MAIN
Changes since 1.81: +8 -3 lines
Diff to previous 1.81 (colored) to selected 1.9.2.1 (colored)

Under check_mtree, invoke mtree with -L if check_mtree_follow_symlinks is set.
Apparently mtree -L is imperfect, but it is far better than the lack thereof
if symlinks are involved reaching files mtree verifies.

Revision 1.81 / (download) - annotate - [select for diffs], Thu Feb 13 01:55:10 2003 UTC (21 years, 1 month ago) by jhawk
Branch: MAIN
Changes since 1.80: +36 -20 lines
Diff to previous 1.80 (colored) to selected 1.9.2.1 (colored)

Add some flexibility to /etc/security, by way of security.conf options:
  check_passwd_nowarn_shells	Don't warn about these non-/etc/shells shells
  check_passwd_nowarn_users	Don't warn about these users
  check_passwd_permit_star	Don't warn about "*" in the $2 field
Behavior change: check_passwd_nowarn_shells defaults to /sbin/nologin and
  /usr/libexec/uucp/uucico, so that it will not warn about the default
  master.passwd.
The rationale here is that an administrator who chooses to permit these
  warnable conditions should not be warned about them day after day, yet
  should not be forced to disable check_passwd entirely.
check_passwd_permit_star is primarily of interest to sites who use *'d
  entries for Kerberos or ssh logins, despite the fact that we permit
  "*ssh" (etc.) for this purpose (legacy).

Revision 1.80 / (download) - annotate - [select for diffs], Mon Jan 6 20:30:30 2003 UTC (21 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.79: +18 -18 lines
Diff to previous 1.79 (colored) to selected 1.9.2.1 (colored)

writable, not writeable.

Revision 1.44.4.3 / (download) - annotate - [select for diffs], Wed Sep 4 01:02:37 2002 UTC (21 years, 6 months ago) by itojun
Branch: netbsd-1-5
Changes since 1.44.4.2: +3 -2 lines
Diff to previous 1.44.4.2 (colored) to branchpoint 1.44 (colored) next main 1.45 (colored) to selected 1.9.2.1 (colored)

pullup 1.77-1.78 via patch (itojun)

understand md5 password

Revision 1.79 / (download) - annotate - [select for diffs], Tue Aug 20 07:53:51 2002 UTC (21 years, 7 months ago) by elric
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.78: +7 -6 lines
Diff to previous 1.78 (colored) to selected 1.9.2.1 (colored)

Added .k5login to the list of files that are checked in each user's
home directory.

Addresses PR: security/18000

Revision 1.75.2.2 / (download) - annotate - [select for diffs], Wed Aug 7 00:55:54 2002 UTC (21 years, 7 months ago) by lukem
Branch: netbsd-1-6
CVS Tags: netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001
Changes since 1.75.2.1: +2 -1 lines
Diff to previous 1.75.2.1 (colored) to branchpoint 1.75 (colored) next main 1.76 (colored) to selected 1.9.2.1 (colored)

Pull up revisions 1.77-1.78 (requested by itojun in ticket #631):
    1.77:
	recognize md5/bcrypt password.  noted by: Eric Jacoboni
	<jaco@teaser.fr>
    1.78:
	md5/bcrypt password starts with $[12], so use ^ in regex

Revision 1.78 / (download) - annotate - [select for diffs], Tue Jun 18 22:43:53 2002 UTC (21 years, 9 months ago) by itojun
Branch: MAIN
Changes since 1.77: +3 -3 lines
Diff to previous 1.77 (colored) to selected 1.9.2.1 (colored)

md5/bcrypt password starts with $[12], so use ^ in regex

Revision 1.77 / (download) - annotate - [select for diffs], Tue Jun 18 22:21:43 2002 UTC (21 years, 9 months ago) by itojun
Branch: MAIN
Changes since 1.76: +3 -2 lines
Diff to previous 1.76 (colored) to selected 1.9.2.1 (colored)

recognize md5/bcrypt password.  noted by: Eric Jacoboni <jaco@teaser.fr>

Revision 1.75.2.1 / (download) - annotate - [select for diffs], Mon Jun 10 17:42:32 2002 UTC (21 years, 9 months ago) by tv
Branch: netbsd-1-6
Changes since 1.75: +3 -3 lines
Diff to previous 1.75 (colored) to selected 1.9.2.1 (colored)

Pull up revision 1.76 (requested by atatat in ticket #235):
The check_rootdotfiles section mucks with the PATH setting, but
never puts it back properly.  As such, jobs run later that expect
there to be a path will lose badly (eg, run lintpkgsrc -i from
security.local).  Let's just re-export the PATH.

Revision 1.76 / (download) - annotate - [select for diffs], Mon Jun 10 16:04:48 2002 UTC (21 years, 9 months ago) by atatat
Branch: MAIN
Changes since 1.75: +3 -3 lines
Diff to previous 1.75 (colored) to selected 1.9.2.1 (colored)

The check_rootdotfiles section mucks with the PATH setting, but
never puts it back properly.  As such, jobs run later that expect
there to be a path will lose badly (eg, run lintpkgsrc -i from
security.local).  Let's just re-export the PATH.

Revision 1.75 / (download) - annotate - [select for diffs], Tue May 21 13:50:46 2002 UTC (21 years, 10 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-1-6-base
Branch point for: netbsd-1-6
Changes since 1.74: +27 -16 lines
Diff to previous 1.74 (colored) to selected 1.9.2.1 (colored)

Support shell metacharacters (`*', '?', '[') in /etc/changelist lines,
including checks for "backups that exist when actual file is deleted", a la
the existing mechanism used for "/etc/ifconfig.*" ... "/etc/rc.d/*" checks.
This resolves [security/15798] from Bob Kemp <bob@allegory.demon.co.uk>.

Revision 1.74 / (download) - annotate - [select for diffs], Tue Dec 18 00:44:20 2001 UTC (22 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.73: +2 -1 lines
Diff to previous 1.73 (colored) to selected 1.9.2.1 (colored)

Add nullfs to the list of file system types to skip during the "big finds".
Fix from Alan Barrett in [misc/14957].

Revision 1.44.4.2 / (download) - annotate - [select for diffs], Sun Dec 9 17:44:18 2001 UTC (22 years, 3 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003
Changes since 1.44.4.1: +2 -2 lines
Diff to previous 1.44.4.1 (colored) to branchpoint 1.44 (colored) to selected 1.9.2.1 (colored)

Pull up revision 1.58 (requested by lukem):
  Run mtree on the special file using the new ``-l'' option, so it
  will not complain about things like files set to 444 instead of
  644.

Revision 1.73 / (download) - annotate - [select for diffs], Fri Nov 9 09:01:20 2001 UTC (22 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.72: +3 -3 lines
Diff to previous 1.72 (colored) to selected 1.9.2.1 (colored)

remove blank lines from the lists of files to backup_and_diff

Revision 1.72 / (download) - annotate - [select for diffs], Thu Oct 18 16:08:24 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.71: +2 -2 lines
Diff to previous 1.71 (colored) to selected 1.9.2.1 (colored)

add -dgq to check_pkgs ls(1). suggested by @@@

Revision 1.71 / (download) - annotate - [select for diffs], Thu Oct 18 14:50:17 2001 UTC (22 years, 5 months ago) by taca
Branch: MAIN
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored) to selected 1.9.2.1 (colored)

Add -T option to ls(1) when -l option is specified.
This fixes none-changed files under ${backup_dir}/pkgs as bellow:

======
/var/backups/pkgs diffs (OLD < > NEW)
======
159c159
< -rw-r--r--  1 root  wheel     528 Apr 19 01:11 ja-less-332/+CONTENTS
---
> -rw-r--r--  1 root  wheel     528 Apr 19  2001 ja-less-332/+CONTENTS

Revision 1.70 / (download) - annotate - [select for diffs], Mon Oct 15 03:00:22 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored) to selected 1.9.2.1 (colored)

Use "nodiff" instead of "nomail" for the tag which is used to exclude
files from having the changes diff generated.  Suggested by Michael Graff.

Revision 1.69 / (download) - annotate - [select for diffs], Sun Oct 14 00:42:31 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.68: +3 -3 lines
Diff to previous 1.68 (colored) to selected 1.9.2.1 (colored)

minor optimisation suggested by christos

Revision 1.68 / (download) - annotate - [select for diffs], Sat Oct 13 14:22:11 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.67: +23 -17 lines
Diff to previous 1.67 (colored) to selected 1.9.2.1 (colored)

A few more changes, from more discussions with Andrew Brown.
- Resurrect /etc/changelist, even if it's an "empty" file by default,
  because it's easier to use than /etc/mtree/special.local for adding
  a couple of simple files. Back by popular demand (hi @@@! :-)
- Add /etc/rc.d/* to the list of "dynamic" files; this notices changes
  in user-added scripts
- Only calculate the mtree -I nomail list once, and re-use
- Use "cat foo | while read file" instead of "for file in `cat foo`" ;
  handles whitespace better...

Revision 1.67 / (download) - annotate - [select for diffs], Fri Oct 12 05:18:23 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.66: +240 -134 lines
Diff to previous 1.66 (colored) to selected 1.9.2.1 (colored)

Major overhaul, with help from Andrew Brown <atatat@netbsd.org>.

Features:
- Add a bunch of stuff to /etc/mtree/special to enable removal of
  /etc/changelist:
	- files which we want to monitor for changes but don't want to
	  see the diffs of (master.passwd, ssh_host_key, ...) are
	  tagged with "nomail"
	- files which we don't want to monitor are tagged with "exclude"
	  (such as netgroup.db, kvm.db, ...)
	- monitor /etc/mtree/special.local, /root/.ssh/*
	- remove /etc/changelist, and a bunch of XXX comments
	- use mtree(8)'s -D, -I, and -E to generate lists of files to
	  actually do the changelist stuff on.
	- support /etc/mtree/special.local as an optional user-provided
	  version of /etc/mtree/special (effectively, an enhanced
	  /etc/changelist)
- Add code to monitor: /etc/ifconfig.* /etc/raid*.conf /etc/rc.conf.d/*
  including support for these files being added and removed at will.
- If /sbin/fdisk exists, backup the output of "fdisk $disk" for all
  the active disk drives as part of $check_disklabels
- Check permissions on: ~/.ssh/* ~/.shosts

Details:
- Reorder initialisation of defaults
- Remove special case for /etc/master.passwd "monitor but don't email diffs"
  with general case for other similar files.
- Keep all `autogenerated' files (such as disklabel.*, setuid.current, ...)
  in "$backup_dir/work", to minimise name clashes.
- Add migrate_file(old, new) to do the hard work of migrating files
  from the old `top level' /var/backups mechanism to the `full path'
  mechanism recently added. Use this appropriately.
- Add backup_and_diff(file, printdiffs), to the hard work of backing-up
  and diff-ing files.
- Cleanup use of shell redirects
- /bin/sh supports ~root globbing, so use it.
- Improve umask checking; use awk regex rather than awk math

Revision 1.66 / (download) - annotate - [select for diffs], Fri Oct 5 01:06:17 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.65: +4 -4 lines
Diff to previous 1.65 (colored) to selected 1.9.2.1 (colored)

minor whitespace fix

Revision 1.65 / (download) - annotate - [select for diffs], Wed Oct 3 15:41:25 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.64: +4 -4 lines
Diff to previous 1.64 (colored) to selected 1.9.2.1 (colored)

replace "pkg_dbdir" with "pkgdb_dir", to be consistent with "backup_dir"

Revision 1.64 / (download) - annotate - [select for diffs], Wed Oct 3 07:04:32 2001 UTC (22 years, 5 months ago) by cjs
Branch: MAIN
Changes since 1.63: +2 -1 lines
Diff to previous 1.63 (colored) to selected 1.9.2.1 (colored)

Since we store the output of ls for use later, make sure that we have TZ=UTC.
(Otherwise time zone changes cause us to believe that files have changed
when they have not.)

Revision 1.63 / (download) - annotate - [select for diffs], Wed Oct 3 00:12:17 2001 UTC (22 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.62: +30 -22 lines
Diff to previous 1.62 (colored) to selected 1.9.2.1 (colored)

- clean up a couple of comments
- reformat some awk blocks
- replace "sed 1d | awk '...'" with "awk 'NR==1 {next;} ...'"

Revision 1.62 / (download) - annotate - [select for diffs], Mon Oct 1 02:21:20 2001 UTC (22 years, 6 months ago) by atatat
Branch: MAIN
Changes since 1.61: +19 -4 lines
Diff to previous 1.61 (colored) to selected 1.9.2.1 (colored)

Add a chunk of code to check the installed pkgs list by making a list
of all installed pkgs and their +CONTENTS and +REQUIRED_BY files (if
they have one) and handling this file along with all the other
CHANGELIST stuff.

Greg Woods gets points for coming up with the idea.

Luke Mewburn asked me to do it, and provided lots of criticism along
the way.

Revision 1.61 / (download) - annotate - [select for diffs], Mon Sep 24 03:19:43 2001 UTC (22 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored) to selected 1.9.2.1 (colored)

remove acd (non existant), add ld (for hw raid logical drives)

Revision 1.60 / (download) - annotate - [select for diffs], Sun Sep 23 19:51:20 2001 UTC (22 years, 6 months ago) by perry
Branch: MAIN
Changes since 1.59: +2 -2 lines
Diff to previous 1.59 (colored) to selected 1.9.2.1 (colored)

add raid, remove cd drives and floppy drives from the nightly disk
permissions checks.

note: This whole thing needs to be rototilled. And yes, I'm
volunteering to do it.

Revision 1.59 / (download) - annotate - [select for diffs], Sun Sep 23 19:10:25 2001 UTC (22 years, 6 months ago) by perry
Branch: MAIN
Changes since 1.58: +7 -2 lines
Diff to previous 1.58 (colored) to selected 1.9.2.1 (colored)

Update the password sanity checking thusly:
1) If a password entry is of the form \*[A-z-]+, do not complain that
   the account is off but has a valid password. Thus you can do
   passwords like *ssh to indicate ssh only logins.
   We should come up with a standard scheme for what various *keywords mean.
   Note that if the field length is 13, 20 or 34 you'll still get
   bitched at.
   This code should be cleaned up. (So should the password scheme.)
2) If the entry is for "toor", don't complain that the account is off
   but has a valid shell. We ship with toor:*:, there is no point in
   complaining about it.

Part of the campaign against spurious security warning output.

Revision 1.58 / (download) - annotate - [select for diffs], Sat Sep 22 04:06:23 2001 UTC (22 years, 6 months ago) by perry
Branch: MAIN
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored) to selected 1.9.2.1 (colored)

run mtree on the special file using the new -l option, so it will not
complain about things like files set 444 instead of 644.

part of the campaign against spurious output in the nightly security run.

Revision 1.57 / (download) - annotate - [select for diffs], Sun Aug 26 11:55:38 2001 UTC (22 years, 7 months ago) by simonb
Branch: MAIN
Changes since 1.56: +3 -3 lines
Diff to previous 1.56 (colored) to selected 1.9.2.1 (colored)

Remove rz/tz support for pmax, switch to MI SCSI.

Revision 1.56 / (download) - annotate - [select for diffs], Mon Jun 18 10:54:02 2001 UTC (22 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.55: +8 -12 lines
Diff to previous 1.55 (colored) to selected 1.9.2.1 (colored)

use mktemp(1) to create temporary directories, and ensure that cleanup traps
are setup asap.

Revision 1.55 / (download) - annotate - [select for diffs], Thu Jun 14 07:50:07 2001 UTC (22 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored) to selected 1.9.2.1 (colored)

use symbolic signal names instead of numbers

Revision 1.54 / (download) - annotate - [select for diffs], Thu May 10 14:19:27 2001 UTC (22 years, 10 months ago) by atatat
Branch: MAIN
Changes since 1.53: +21 -3 lines
Diff to previous 1.53 (colored) to selected 1.9.2.1 (colored)

When backing files listed in /etc/changelist, instead of truncating
to the basename of the file, use the whole path with $backup_dir
prepended, in effect mirrorring the directory tree.  This eliminates
the possibility of a name collision.

Closes pr bin/12727.

Revision 1.53 / (download) - annotate - [select for diffs], Thu May 10 14:10:15 2001 UTC (22 years, 10 months ago) by atatat
Branch: MAIN
Changes since 1.52: +3 -3 lines
Diff to previous 1.52 (colored) to selected 1.9.2.1 (colored)

Allow embedded hyphens in user names (and group names), just not as the
first or last character.

Revision 1.52 / (download) - annotate - [select for diffs], Wed Apr 4 03:17:19 2001 UTC (22 years, 11 months ago) by atatat
Branch: MAIN
Changes since 1.51: +12 -20 lines
Diff to previous 1.51 (colored) to selected 1.9.2.1 (colored)

Provide the capability of storing backups via RCS instead of just a
"current" and a "last" (which is useless if you wanna know what you
changed last week).  Set the default to on.

Revision 1.51 / (download) - annotate - [select for diffs], Thu Mar 15 02:23:47 2001 UTC (23 years ago) by hubertf
Branch: MAIN
Changes since 1.50: +1 -7 lines
Diff to previous 1.50 (colored) to selected 1.9.2.1 (colored)

Run skeyaudit (only) from /etc/daily instead of /etc/security, else there's
some risk that the users don't get warned if an admin turns off running
/etc/security (by putting run_security=no into daily.conf).

Fixes PR 12267.

Revision 1.50 / (download) - annotate - [select for diffs], Mon Mar 12 16:48:13 2001 UTC (23 years ago) by atatat
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored) to selected 1.9.2.1 (colored)

Allow md5 passwords of length 34 as passwords

Revision 1.49 / (download) - annotate - [select for diffs], Sun Feb 11 09:55:09 2001 UTC (23 years, 1 month ago) by jdolecek
Branch: MAIN
Changes since 1.48: +8 -4 lines
Diff to previous 1.48 (colored) to selected 1.9.2.1 (colored)

Introduce max_grouplen - this determines the maximum permitted length
of group names, similarily to max_loginlen

Revision 1.48 / (download) - annotate - [select for diffs], Tue Jan 9 17:30:29 2001 UTC (23 years, 2 months ago) by abs
Branch: MAIN
Changes since 1.47: +16 -13 lines
Diff to previous 1.47 (colored) to selected 1.9.2.1 (colored)

Add a new variable 'backup_dir', which can be used to change the backup
directory from /var/backup (useful for those of us who have a separate /var
and would like to have our backup disklabels on the root filesystem).
Default behaviour unchanged. backup_dir being unset is taken as /var/backup.

Revision 1.47 / (download) - annotate - [select for diffs], Sat Oct 7 07:36:56 2000 UTC (23 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.46: +5 -5 lines
Diff to previous 1.46 (colored) to selected 1.9.2.1 (colored)

use ${foo##*/} instead of `basename $foo`.  as suggested (with minor variation)
by Toru Nishimura <nisimura@itc.aist-nara.ac.jp>

Revision 1.46 / (download) - annotate - [select for diffs], Sun Sep 10 21:27:50 2000 UTC (23 years, 6 months ago) by christos
Branch: MAIN
Changes since 1.45: +6 -6 lines
Diff to previous 1.45 (colored) to selected 1.9.2.1 (colored)

PR/10982: kilbi@rad.rwth-aachen.de: Don't confuse printf with usernames
that start with -.

Revision 1.44.4.1 / (download) - annotate - [select for diffs], Mon Jul 3 02:27:20 2000 UTC (23 years, 9 months ago) by sommerfeld
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2
Changes since 1.44: +19 -8 lines
Diff to previous 1.44 (colored) to selected 1.9.2.1 (colored)

pullup 1.45: fix root umask check to have a chance of working.
approved by thorpej

Revision 1.45 / (download) - annotate - [select for diffs], Sun Jul 2 22:27:47 2000 UTC (23 years, 9 months ago) by sommerfeld
Branch: MAIN
Changes since 1.44: +19 -8 lines
Diff to previous 1.44 (colored) to selected 1.9.2.1 (colored)

Fix pr9320: improve umask checking for root's dotfiles.
Now even notices bogus umasks like 044

Revision 1.44 / (download) - annotate - [select for diffs], Fri May 26 17:08:21 2000 UTC (23 years, 10 months ago) by ad
Branch: MAIN
CVS Tags: netbsd-1-5-base, minoura-xpg4dl-base, minoura-xpg4dl
Branch point for: netbsd-1-5
Changes since 1.43: +7 -1 lines
Diff to previous 1.43 (colored) to selected 1.9.2.1 (colored)

We may as well allow local additions to /etc/security, since it gets done
for the other periodic checks.

Revision 1.43 / (download) - annotate - [select for diffs], Fri May 5 18:28:53 2000 UTC (23 years, 10 months ago) by itojun
Branch: MAIN
Changes since 1.42: +7 -5 lines
Diff to previous 1.42 (colored) to selected 1.9.2.1 (colored)

check /etc/mail/aliases on check_aliases.
/etc/aliases will be checked as well, if exists (for backward compatibility).

Revision 1.42 / (download) - annotate - [select for diffs], Mon Apr 24 23:46:37 2000 UTC (23 years, 11 months ago) by fair
Branch: MAIN
Changes since 1.41: +7 -1 lines
Diff to previous 1.41 (colored) to selected 1.9.2.1 (colored)

Add skeyaudit to /etc/security (with a variable to disable) per PR 5871

Revision 1.41 / (download) - annotate - [select for diffs], Sat Jan 15 01:15:12 2000 UTC (24 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored) to selected 1.9.2.1 (colored)

Use cat -f to avoid denial of service attacks by people who make .rhosts
files fifos.

Revision 1.37.2.1 / (download) - annotate - [select for diffs], Fri Sep 10 22:15:11 1999 UTC (24 years, 6 months ago) by he
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH003, netbsd-1-4-PATCH002
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) next main 1.38 (colored) to selected 1.9.2.1 (colored)

Pull up revision 1.40:
  Don't try to grab disklabels from CDs.  (perry)

Revision 1.40 / (download) - annotate - [select for diffs], Sun Sep 5 15:11:42 1999 UTC (24 years, 6 months ago) by perry
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, comdex-fall-1999-base, comdex-fall-1999
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored) to selected 1.9.2.1 (colored)

We already had logic not to try to grab the disklabels of md's and
fd's -- add cd's to the list.

Revision 1.39 / (download) - annotate - [select for diffs], Thu Jul 22 00:47:50 1999 UTC (24 years, 8 months ago) by hubertf
Branch: MAIN
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored) to selected 1.9.2.1 (colored)

Use standard variable "$0" for the whole line instead of the non-standard,
undocumented "$LINE".

Submitted in PR 7041 by Greg A. Woods <woods@weird.com>

Revision 1.38 / (download) - annotate - [select for diffs], Fri Apr 23 08:20:28 1999 UTC (24 years, 11 months ago) by kleink
Branch: MAIN
Changes since 1.37: +6 -6 lines
Diff to previous 1.37 (colored) to selected 1.9.2.1 (colored)

Get rid of old-style chown operands.

Revision 1.37 / (download) - annotate - [select for diffs], Wed Mar 17 19:11:05 1999 UTC (25 years ago) by wrstuden
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH001
Branch point for: netbsd-1-4
Changes since 1.36: +6 -3 lines
Diff to previous 1.36 (colored) to selected 1.9.2.1 (colored)

Add a commented-out duplicate id checker which doesn't exclude toor, and
add a comment saying how to switch it on.

Revision 1.36 / (download) - annotate - [select for diffs], Wed Mar 17 02:58:11 1999 UTC (25 years ago) by wrstuden
Branch: MAIN
Changes since 1.35: +4 -2 lines
Diff to previous 1.35 (colored) to selected 1.9.2.1 (colored)

Modify duplicate user id check to exclude "toor". Any other uid 0
accounts will generate a message with that (those) account names, root, and
toor present in the list.

Revision 1.35 / (download) - annotate - [select for diffs], Tue Mar 16 06:18:17 1999 UTC (25 years ago) by fair
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored) to selected 1.9.2.1 (colored)

Fix PR 5068 - scanning ~user/.rhosts files on NFS mounted home
directories with -maproot=nobody on the server. The argument to be
made is that if NetBSD's root can't read these files, it shouldn't
try to check them.

Revision 1.34 / (download) - annotate - [select for diffs], Thu Feb 18 18:53:33 1999 UTC (25 years, 1 month ago) by abs
Branch: MAIN
Changes since 1.33: +19 -7 lines
Diff to previous 1.33 (colored) to selected 1.9.2.1 (colored)

Handle + in master.passwd (From PR#4802).
Also, handle + in group and allow max_loginlen to be configurable.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Sep 14 19:42:42 1998 UTC (25 years, 6 months ago) by tv
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored) to selected 1.9.2.1 (colored)

Nix "Login %s is off but still has a valid shell" warning for 20-character
encrypted passwords generated by the NEWSALT option to passwd(1).

Revision 1.32 / (download) - annotate - [select for diffs], Tue Aug 25 13:47:29 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.31: +48 -9 lines
Diff to previous 1.31 (colored) to selected 1.9.2.1 (colored)

* if $check_disklabels=YES, backup and compare of disklabels of current disks.
  should detect added or removed disks as well. backup labels go in
  /var/backups/disklabel.XXX (XXX = disk name, e.g., sd0), and the
  changelist style backups have .current or .backup suffixes
* minor whitespace, formatting, and comment cleanup

Revision 1.31 / (download) - annotate - [select for diffs], Mon Jan 26 12:02:55 1998 UTC (26 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.30: +20 -13 lines
Diff to previous 1.30 (colored) to selected 1.9.2.1 (colored)

include rc.subr and use appropriately

Revision 1.30 / (download) - annotate - [select for diffs], Wed Oct 8 16:13:44 1997 UTC (26 years, 5 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-3-base, netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA, netbsd-1-3
Changes since 1.29: +13 -5 lines
Diff to previous 1.29 (colored) to selected 1.9.2.1 (colored)

Deal with files in the changelist that are added or removed.
* When a file is removed, move its .current file to .backup.
* When a file is added, create its .current file.
* In either case, send a diff against /dev/null.
Mostly from Jim Bernard in PR 4183, with the removal case fixed.

Revision 1.29 / (download) - annotate - [select for diffs], Tue Sep 23 14:36:56 1997 UTC (26 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.28: +9 -10 lines
Diff to previous 1.28 (colored) to selected 1.9.2.1 (colored)

- use 'ftpd -C user' to check the format of /etc/ftpusers.
  closes [security/4061]
- rename $MPPATH to $MPBYPATH, to clarify its use

Revision 1.28 / (download) - annotate - [select for diffs], Thu Sep 18 05:16:19 1997 UTC (26 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.27: +52 -42 lines
Diff to previous 1.27 (colored) to selected 1.9.2.1 (colored)

- don't print "Checking setuid files and devices:" if no problems
  found (solves [security/4047])
- minor cleanup (rename a couple of variables, etc)

Revision 1.27 / (download) - annotate - [select for diffs], Fri Aug 22 09:40:17 1997 UTC (26 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.26: +62 -61 lines
Diff to previous 1.26 (colored) to selected 1.9.2.1 (colored)

- correct use of generated temporary files.
- clean up comments and generated output.
- clean up $SECUREDIR if SIGINT or SIGQUIT received.
- .rhosts may have to be world readable in NFS environments, so allow it to be.
- update list of disks to check for reasonable permissions
- don't show differences in /etc/master.passwd, as the encrypted strings may
  be sent. From reading comments earlier in the script, this was the intention
  anyway. Fix from Jim Bernard <jbernard@tater.mines.edu> in [security/3994].
- when checking /etc/ftpusers, skip comment lines and only match full
  usernames.
  XXX: this should be enhanced to check lines of the enhanced ftpusers format.

Revision 1.26 / (download) - annotate - [select for diffs], Tue Aug 19 12:08:35 1997 UTC (26 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.25: +9 -4 lines
Diff to previous 1.25 (colored) to selected 1.9.2.1 (colored)

* ensure that check for '.' in root's $PATH doesn't yield a false positive.
  fix from Jim Bernard <jbernard@tater.mines.edu> in [security/3995]
* detect empty :: elements as '.' in a sh(1) path (leading :, trailing :,
  or ::)

Revision 1.25 / (download) - annotate - [select for diffs], Tue Jun 24 02:32:38 1997 UTC (26 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.24: +36 -19 lines
Diff to previous 1.24 (colored) to selected 1.9.2.1 (colored)

* when checking /etc/master.passwd, read in /etc/shells for a list of
  valid shells and then check each active account against that
* remove unnecessary ()s in a few printf's.

Revision 1.24 / (download) - annotate - [select for diffs], Tue Jun 24 01:16:47 1997 UTC (26 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.23: +3 -3 lines
Diff to previous 1.23 (colored) to selected 1.9.2.1 (colored)

* take advantage of xargs -0 when finding devices and set?id files
* use 'ls -q' in the above, so that characters that may cause problems
  in the output are replaced with '?'

Revision 1.23 / (download) - annotate - [select for diffs], Mon Jun 23 11:59:30 1997 UTC (26 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored) to selected 1.9.2.1 (colored)

Also check /etc/profile for setting of umask.
From Chris Jones <cjones@rupert.oscs.montana.edu> in [misc/3763]

Revision 1.22 / (download) - annotate - [select for diffs], Mon Jun 23 01:49:15 1997 UTC (26 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.21: +5 -1 lines
Diff to previous 1.21 (colored) to selected 1.9.2.1 (colored)

Ignore blank lines and comments in /etc/exports
From Jaromir Dolecek <dolecek@moria.ics.muni.cz> in [misc/3691]

Revision 1.21 / (download) - annotate - [select for diffs], Mon Apr 21 17:38:39 1997 UTC (26 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.20: +4 -4 lines
Diff to previous 1.20 (colored) to selected 1.9.2.1 (colored)

Don't list directories with the setuid bit set or FIFOs.

Revision 1.20 / (download) - annotate - [select for diffs], Mon Apr 21 11:19:57 1997 UTC (26 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.19: +10 -10 lines
Diff to previous 1.19 (colored) to selected 1.9.2.1 (colored)

Minor cleanup.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Apr 21 11:14:41 1997 UTC (26 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.18: +14 -8 lines
Diff to previous 1.18 (colored) to selected 1.9.2.1 (colored)

When doing security checks in user home directory, sort by home directory, to
optimize lookups a little.
Also, add some more files to the naughty lists.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Apr 17 07:42:07 1997 UTC (26 years, 11 months ago) by mikel
Branch: MAIN
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored) to selected 1.9.2.1 (colored)

make /etc/aliases check a bit more discriminating: the line must be
uncommented, and it must contain a '|' character (forwarding to program).

Revision 1.17 / (download) - annotate - [select for diffs], Mon Mar 10 09:45:58 1997 UTC (27 years ago) by mycroft
Branch: MAIN
Changes since 1.16: +13 -13 lines
Diff to previous 1.16 (colored) to selected 1.9.2.1 (colored)

Minor cleanup.

Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Sat Feb 15 05:27:55 1997 UTC (27 years, 1 month ago) by mikel
Branch: WFJ-920714, CSRG
CVS Tags: lite-2, lite-1
Changes since 1.1.1.1: +528 -30 lines
Diff to previous 1.1.1.1 (colored) to selected 1.9.2.1 (colored)

import 4.4BSD-Lite

Revision 1.16 / (download) - annotate - [select for diffs], Fri Feb 14 08:52:05 1997 UTC (27 years, 1 month ago) by mikel
Branch: MAIN
Changes since 1.15: +7 -9 lines
Diff to previous 1.15 (colored) to selected 1.9.2.1 (colored)

Don't leave logs in /etc/mtree; from Andrew Wheadon in PR misc/3106.
Also fixed some comments.

Revision 1.15 / (download) - annotate - [select for diffs], Sun Jan 5 11:46:12 1997 UTC (27 years, 2 months ago) by mrg
Branch: MAIN
Changes since 1.14: +444 -404 lines
Diff to previous 1.14 (colored) to selected 1.9.2.1 (colored)

add configuration file for security, as security.conf.
the file allows each action taken by security to be
turned on or off.

Revision 1.14 / (download) - annotate - [select for diffs], Wed May 22 00:51:08 1996 UTC (27 years, 10 months ago) by mrg
Branch: MAIN
Changes since 1.13: +3 -2 lines
Diff to previous 1.13 (colored) to selected 1.9.2.1 (colored)

ignore setgid on dirs.

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jan 14 00:58:25 1996 UTC (28 years, 2 months ago) by pk
Branch: MAIN
CVS Tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-PATCH001, netbsd-1-2-BETA, netbsd-1-2
Changes since 1.12: +11 -8 lines
Diff to previous 1.12 (colored) to selected 1.9.2.1 (colored)

Several fixes from Arne H. Juul (PR#1814).

Revision 1.12 / (download) - annotate - [select for diffs], Sun Dec 17 02:01:14 1995 UTC (28 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.11: +1 -1 lines
Diff to previous 1.11 (colored) to selected 1.9.2.1 (colored)

New-style RCS ids.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Jan 31 16:09:45 1995 UTC (29 years, 2 months ago) by jtc
Branch: MAIN
CVS Tags: netbsd-1-1-base, netbsd-1-1-RELEASE, netbsd-1-1-PATCH001, netbsd-1-1
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.9.2.1 (colored)

Change .emacsrc to .emacs in list of files to be checked.
From Mike Long, in PR #768.

Revision 1.9.2.1 / (download) - annotate - [selected], Tue Oct 18 18:41:40 1994 UTC (29 years, 5 months ago) by cgd
Branch: netbsd-1-0
CVS Tags: netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0
Changes since 1.9: +3 -2 lines
Diff to previous 1.9 (colored) next main 1.10 (colored)

from trunk.

Revision 1.10 / (download) - annotate - [select for diffs], Tue Oct 18 16:52:57 1994 UTC (29 years, 5 months ago) by mycroft
Branch: MAIN
Changes since 1.9: +3 -2 lines
Diff to previous 1.9 (colored) to selected 1.9.2.1 (colored)

Fix the fstype-based pruning algorithms.  Partly suggested by John Kohl.

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jun 15 04:28:20 1994 UTC (29 years, 9 months ago) by cgd
Branch: MAIN
CVS Tags: netbsd-1-0-base
Branch point for: netbsd-1-0
Changes since 1.8: +529 -43 lines
Diff to previous 1.8 (colored) to selected 1.9.2.1 (colored)

update to new security script

Revision 1.8 / (download) - annotate - [select for diffs], Sat Jan 15 18:32:06 1994 UTC (30 years, 2 months ago) by cgd
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (colored) to selected 1.9.2.1 (colored)

people importing trees from SunOS should be shot; add -d to ls.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Dec 15 07:07:36 1993 UTC (30 years, 3 months ago) by mycroft
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored) to selected 1.9.2.1 (colored)

Find only set[gu]id files and devices, like old ncheck(1).

Revision 1.6 / (download) - annotate - [select for diffs], Wed Oct 27 16:59:13 1993 UTC (30 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.5: +3 -3 lines
Diff to previous 1.5 (colored) to selected 1.9.2.1 (colored)

use of xargs wasn't strictly a security hole, but could lead to fouled-
up results.  xargs should really have an option to automatically
'quote' input.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Oct 27 09:54:31 1993 UTC (30 years, 5 months ago) by mycroft
Branch: MAIN
Changes since 1.4: +2 -4 lines
Diff to previous 1.4 (colored) to selected 1.9.2.1 (colored)

Use xargs(1) to avoid overflowing the argument list to ls(1).

Revision 1.4 / (download) - annotate - [select for diffs], Tue Oct 26 01:38:57 1993 UTC (30 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.3: +7 -4 lines
Diff to previous 1.3 (colored) to selected 1.9.2.1 (colored)

from FreeBSD: check for set*id devices in a way closer to the original.
note that you can still overflow the args buffer for the ls (and it does
that on lamp), but it's better than before.

Revision 1.3 / (download) - annotate - [select for diffs], Tue Oct 19 06:13:08 1993 UTC (30 years, 5 months ago) by mycroft
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored) to selected 1.9.2.1 (colored)

Rewrite set[gu]id find command to avoid walking non-local file systems.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Apr 2 08:00:48 1993 UTC (31 years ago) by cgd
Branch: MAIN
CVS Tags: netbsd-alpha-1, netbsd-0-9-base, netbsd-0-9-RELEASE, netbsd-0-9-BETA, netbsd-0-9-ALPHA2, netbsd-0-9-ALPHA, netbsd-0-9, netbsd-0-8
Changes since 1.1: +22 -10 lines
Diff to previous 1.1 (colored) to selected 1.9.2.1 (colored)

updated to reflect the fact that we don't have an ncheck

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 21 09:45:37 1993 UTC (31 years ago) by cgd
Branch: WFJ-920714, CSRG
CVS Tags: patchkit-0-2-2, WFJ-386bsd-01
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.9.2.1 (colored)

initial import of 386bsd-0.1 sources

Revision 1.1 / (download) - annotate - [select for diffs], Sun Mar 21 09:45:37 1993 UTC (31 years ago) by cgd
Branch: MAIN
Diff to selected 1.9.2.1 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>