diff options
author | kleink <kleink> | 2006-01-15 16:25:41 +0000 |
---|---|---|
committer | kleink <kleink> | 2006-01-15 16:25:41 +0000 |
commit | b63f3558589a578e47981d1e3a3d948d67d42322 (patch) | |
tree | 3108bde6cdf96aa3645d9c07269eb3255c3e5204 /www | |
parent | 069d8c36bbea904716e45109743813c15cd06f9d (diff) | |
download | pkgsrc-b63f3558589a578e47981d1e3a3d948d67d42322.tar.gz |
Update to ap-auth-ldap to 1.6.1; changes since 1.6.0 include:
* Fixed security bug that could allow attacker to execute arbitrary
commands as the apache user. [Digital Armaments, seregon at bughunter
dot net]
* Fixed bug that sometimes resulted in segfaults during periodic cache
cleanup. [Stefan Gaffga]
* Add AuthLDAPVersion option to specify which LDAP version to use on
LDAP server. [Hans Petter Selasky]
* Support ldaps:// urls automatically under OpenLDAP. No need to compile
with --with-ssl; this is just to enable SSL with the Netscape SDK.
[Andrew McAllister, Malcolm Locke]
* Fixed bug where auth_ldap didn't always rebind as the AuthLDAPBindDN
after doing an authorization. [Stephen Lombardo, Brent Putnam, Ace
Suares, Ted Cabeen, others].
* Fixed bug where we forgot to note a failed auth attempt which would
result in the browser never giving the user a second chance to enter a
password. [Thanks to many other people]
Diffstat (limited to 'www')
-rw-r--r-- | www/ap-auth-ldap/Makefile | 7 | ||||
-rw-r--r-- | www/ap-auth-ldap/distinfo | 10 | ||||
-rw-r--r-- | www/ap-auth-ldap/patches/patch-aa | 12 |
3 files changed, 14 insertions, 15 deletions
diff --git a/www/ap-auth-ldap/Makefile b/www/ap-auth-ldap/Makefile index f1f1980a35f..28048b787e8 100644 --- a/www/ap-auth-ldap/Makefile +++ b/www/ap-auth-ldap/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.23 2006/01/06 15:10:07 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2006/01/15 16:25:41 kleink Exp $ -DISTNAME= auth_ldap-1.6.0 -PKGREVISION= 4 -PKGNAME= ap-auth-ldap-1.6.0 +DISTNAME= auth_ldap-1.6.1 +PKGNAME= ap-auth-ldap-1.6.1 SVR4_PKGNAME= apldap CATEGORIES= www databases MASTER_SITES= http://www.rudedog.org/auth_ldap/ diff --git a/www/ap-auth-ldap/distinfo b/www/ap-auth-ldap/distinfo index 0e163eb5c20..b0f212b1bc3 100644 --- a/www/ap-auth-ldap/distinfo +++ b/www/ap-auth-ldap/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2006/01/02 20:52:09 joerg Exp $ +$NetBSD: distinfo,v 1.6 2006/01/15 16:25:41 kleink Exp $ -SHA1 (auth_ldap-1.6.0.tar.gz) = d08c611f779db538a0a782d6512e307c0cdaf4a9 -RMD160 (auth_ldap-1.6.0.tar.gz) = 1f5fc8c0f3b8c25c4d4daf20392f22fe6c679646 -Size (auth_ldap-1.6.0.tar.gz) = 79296 bytes -SHA1 (patch-aa) = bc9afa9ee7dbd5fc23c0b8200147a5d8075fc811 +SHA1 (auth_ldap-1.6.1.tar.gz) = 37e163ee78c5f25ef1ef951cecd4d603dbf55cf4 +RMD160 (auth_ldap-1.6.1.tar.gz) = 165c00e37552705843381e98db73e458f6d8026c +Size (auth_ldap-1.6.1.tar.gz) = 82718 bytes +SHA1 (patch-aa) = 1780795616eb3942f395ebb5ff948fe5ebd6f390 diff --git a/www/ap-auth-ldap/patches/patch-aa b/www/ap-auth-ldap/patches/patch-aa index 028cac4296b..5b91122e20a 100644 --- a/www/ap-auth-ldap/patches/patch-aa +++ b/www/ap-auth-ldap/patches/patch-aa @@ -1,11 +1,11 @@ -$NetBSD: patch-aa,v 1.1 2006/01/02 20:52:09 joerg Exp $ +$NetBSD: patch-aa,v 1.2 2006/01/15 16:25:41 kleink Exp $ ---- auth_ldap.c.orig 2006-01-02 20:47:58.000000000 +0000 -+++ auth_ldap.c -@@ -169,7 +169,6 @@ auth_ldap_connect_to_server(request_rec - "{%d} LDAP OP: init", (int)getpid()); - +--- auth_ldap.c.orig 2006-01-09 19:08:56.000000000 +0100 ++++ auth_ldap.c 2006-01-15 17:19:30.000000000 +0100 +@@ -173,7 +173,6 @@ + #else if ((sec->ldc->ldap = ldap_init(sec->host, sec->port)) == NULL) { + #endif - extern int errno; auth_ldap_log_reason(r, "Could not connect to LDAP server: %s", strerror(errno)); return 0; |