]> eyrie.org Git - kerberos/krb5-strength.git/blob - NEWS
Add support for new MIT plugin interface, drop old patch
[kerberos/krb5-strength.git] / NEWS
1                     User-Visible krb5-strength Changes
2
3 krb5-strength 2.0 (unreleased)
4
5     Add support for the MIT Kerberos password quality plugin interface,
6     available in MIT Kerberos 1.9 and later, contributed by Greg Hudson
7     and MIT.  Drop the patch for MIT Kerberos 1.4 (and hence support for
8     versions of MIT Kerberos prior to 1.9).
9
10     CrackLib checks for passwords where a character is a simple increment
11     or decrement of the previous character.  In previous versions, the
12     embedded version of CrackLib allowed at most four such occurrences in
13     the entire password.  This results in false positives on long
14     passphrases, since such accidental letter relationships aren't
15     uncommon in human languages.  Change the embedded CrackLib to allow
16     one such simple increment for every three characters in the password,
17     which tightens the check somewhat for shorter passwords and loosens it
18     considerably for longer passwords.
19
20     Expect the Heimdal password strength checking plugin header in
21     kadm5/kadm5-pwcheck.h instead of outside of the kadm5 directory.  This
22     is the path used by current versions of Heimdal.
23
24     Update to rra-c-util 4.9:
25
26     * Probe for Kerberos headers using file checks instead of compiles.
27     * Improve probe for the Heimdal libroken library.
28     * Always build with large file support.
29     * Conditionally call AM_PROG_AR for portability to new Autotools.
30
31     Update to C TAP Harness 2.2:
32
33     * Allow more easily running single programs under tests/runtests.
34     * Flush the output from the test harness after each test.
35
36 krb5-strength 1.1 (2012-05-11)
37
38     Change the minimum password length in the embedded CrackLib to 8.
39
40     Reject passwords formed from the username portion of the principal
41     with digits appended.
42
43     In the embedded CrackLib, also check for a duplicated dictionary word.
44
45     Support linking with the system CrackLib instead of the embedded and
46     stricter copy by passing --with-cracklib to configure.
47
48     Fix variable sizes in the embedded CrackLib on 64-bit platforms.  This
49     may fix interoperability problems with databases created on platforms
50     with a different native integer size.  Thanks, Karl Lehnberger and
51     Benj Carson.
52
53     Stop using local in the test suite for portability to Solaris /bin/sh.
54
55     Update to rra-c-util 4.4:
56
57     * Use PATH_KRB5_CONFIG to override krb5-config location.
58     * Fix probing for ibm_svc/krb5_svc.h on AIX.
59     * Support Heimdal libraries without libroken, like OpenBSD.
60     * Fix manual Kerberos library probing without transitive dependencies.
61     * Support systems that only have krb5/krb5.h.
62     * Pass --deps to krb5-config in the non-reduced-dependencies case.
63     * Silence __attribute__ warnings on more compilers.
64     * Update warning flags for make warnings.
65     * Flesh out MAINTCLEANFILES to remove autogen results.
66     * Add notices to all files copied from rra-c-util.
67
68     Update to C TAP Harness 1.12:
69
70     * Drop is_double from the C TAP library to avoid requiring -lm.
71     * Avoid using local in the shell libtap.sh library.
72     * Silence __attribute__ warnings on more compilers.
73     * runtests now frees all allocated resources on exit.
74     * Fix runtests to still honor SOURCE and -s without BUILD and -b.
75     * Add tests/HOWTO documenting how to add new tests.
76     * Ensure correct output ordering in test results.
77     * Add -h and a better usage message to tests/runtests.
78
79 krb5-strength 1.0 (2010-02-16)
80
81     Add heimdal-strength, a program that checks password strength using
82     the protocol for a Heimdal external check program.
83
84     The shared module now also exports the interface expected by Heimdal's
85     dynamically loaded password strength checking API and can be used as a
86     Heimdal kadmin plugin.
87
88     Add a new plugin API for MIT Kerberos modelled after the plugin API
89     used for other MIT Kerberos plugins.  Thanks to Marcus Watts for
90     substantial research and contributions to the interface design.  This
91     work is incomplete in this release, missing the corresponding patch to
92     MIT Kerberos.
93
94     Fixed the data format written by the included packer program to add
95     enough nul bytes at the end of the data.  Previously, there was not
96     enough trailing nul bytes for the expected input format, leading to
97     uninitialized memory reads in the password lookup.
98
99     Add a test suite using the driver and library from C TAP Harness 1.1.
100
101     Add portability code for platforms without a working snprintf or other
102     deficiencies and updated the code to take advantage of those
103     guarantees.
104
105 krb5-strength 0.5 (2007-07-18)
106
107     The check of the password against the principal checked against the
108     fully-qualified principal, which is not the usual problem.
109     Additionally check that the password doesn't match the principal with
110     the realm removed or the reverse of that (case-insensitive).
111
112 krb5-strength 0.4 (2007-03-28)
113
114     The patches directory was omitted from the distribution.  Really
115     include it.
116
117 krb5-strength 0.3 (2007-03-23)
118
119     Initial public release.  Includes a patch for MIT Kerberos, a slightly
120     modified version of CrackLib, and glue wrapped around CrackLib to make
121     a loadable module.