Kerberos Module For Apache
Description
Mod_auth_kerb is a module that provides Kerberos user authentication to the Apache web server. It allows to retrieve the username/password pair, and also supports full Kerberos authentication (also known as Negotiate or SPNEGO based authentication).
Categories
License
Update Notifications
User Ratings
User Reviews
-
deseo bajar modauthkerb gratis
-
Thank you so much!
-
Works well
-
works really fine
-
Hi, there seems to be a little mistake in mod_map_user.c on line 420 and 426: 420: while (p[il] != '\0' && (p[il+1] != '$' || p[il+2] != 'n')) p[il++] = apr_tolower(p[il]); 426: while (p[il] != '\0' && (p[il+1] != '$' || p[il+2] != 'n')) p[il++] = apr_toupper(p[il]); I would suggest to change it like this: 420: while (p[il] != '\0' || (p[il+1] != '$' && p[il+2] != 'n')) p[il++] = apr_tolower(p[il]); 426: while (p[il] != '\0' || (p[il+1] != '$' && p[il+2] != 'n')) p[il++] = apr_toupper(p[il]); Regards, Fabian