Apache::AuthenNTLM not failing through to basic auth

2010-04-15 Thread C. Bensend
my distribution. Regardless, not a big deal. 3) I had to change 'use mod_perl' to 'use mod_perl2' However, I'm seeing that HTTP basic auth isn't being tried if NTLM fails (I never get an auth popup, Nagios just acts as if it didn't get a username). From

Re: Basic Auth

2007-09-05 Thread Aaron Dalton
Michael Peters wrote: > Aaron Dalton wrote: >> I have done some Googling, but can't seem to find an answer to what >> appears to me to be a pretty straightforward question. I am running >> Apache 2.2.4 with SSL and mod_perl. I have a virtual host protected by >> B

Re: Basic Auth

2007-09-05 Thread Michael Peters
Aaron Dalton wrote: > I have done some Googling, but can't seem to find an answer to what > appears to me to be a pretty straightforward question. I am running > Apache 2.2.4 with SSL and mod_perl. I have a virtual host protected by > Basic Auth. That host is managed by a home

Basic Auth

2007-09-05 Thread Aaron Dalton
I have done some Googling, but can't seem to find an answer to what appears to me to be a pretty straightforward question. I am running Apache 2.2.4 with SSL and mod_perl. I have a virtual host protected by Basic Auth. That host is managed by a home-rolled, mod_perl handler. I want my ha

Re: Disconnection from basic auth

2007-08-22 Thread Abhijit Hoskeri
On Thu, Aug 23, 2007 at 12:11:37AM -0500, William A. Rowe, Jr. wrote: > Geoffrey Young wrote: > > > > Matthieu FEREYRE wrote: > >> I use a basic authentification (Apache2::Access) wich works fine, but my > >> question is : > >> How do I disconnect users ? > > > > the short answer is that you can

Re: Disconnection from basic auth

2007-08-22 Thread William A. Rowe, Jr.
Geoffrey Young wrote: > > Matthieu FEREYRE wrote: >> I use a basic authentification (Apache2::Access) wich works fine, but my >> question is : >> How do I disconnect users ? > > the short answer is that you can't. this is why you don't see popup > authentication anywhere anymore :) > > "When y

Re: Disconnection from basic auth

2007-08-22 Thread Geoffrey Young
Matthieu FEREYRE wrote: > I use a basic authentification (Apache2::Access) wich works fine, but my > question is : > How do I disconnect users ? the short answer is that you can't. this is why you don't see popup authentication anywhere anymore :) try a simple module like Apache::AuthCookie:

Disconnection from basic auth

2007-08-22 Thread Matthieu FEREYRE
I use a basic authentification (Apache2::Access) wich works fine, but my question is : How do I disconnect users ? The disconnection is done when they close their webbrowser (Apache will ask the login/password the next time they enter the website). But i would like to make a "disconnect" button.

Re: user with Basic Auth

2005-07-04 Thread Eric
At 01:51 PM 7/4/2005, Markus Wichitill wrote: Eric wrote: Do you have "SSLOptions FakeBasicAuth" enabled? That would probably overwrite the normal $r->user with the name from the SSL client certificate (non-existent in your case). No, I just have this: SSLOptions +StdEnvVars And are yo

Re: user with Basic Auth

2005-07-04 Thread Markus Wichitill
Eric wrote: Do you have "SSLOptions FakeBasicAuth" enabled? That would probably overwrite the normal $r->user with the name from the SSL client certificate (non-existent in your case). No, I just have this: SSLOptions +StdEnvVars And are you sure it's not inherited from somewhere else

Re: user with Basic Auth

2005-07-04 Thread Eric
At 01:16 PM 7/4/2005, Markus Wichitill wrote: Eric wrote: Since our move from a internal office machine that was not using SSL to an outside machine that is, I have not been able to get the Basic user's name. Do you have "SSLOptions FakeBasicAuth" enabled? That would probably overwrite the no

Re: user with Basic Auth

2005-07-04 Thread Markus Wichitill
Eric wrote: Since our move from a internal office machine that was not using SSL to an outside machine that is, I have not been able to get the Basic user's name. Do you have "SSLOptions FakeBasicAuth" enabled? That would probably overwrite the normal $r->user with the name from the SSL clien

user with Basic Auth

2005-07-04 Thread Eric
Hi, I am using CGI::Application under mod_perl 1.29/with mod_ssl on a Solaris 10 machine. Since our move from a internal office machine that was not using SSL to an outside machine that is, I have not been able to get the Basic user's name. I think I have tried just about everything, including

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread Geoffrey Young
David Castro wrote: > Okay, a little more tracking down revealed that handler #5 ("check if > the user is ok _here_") is never getting called when my module is being > used, but is for Basic auth. Happen to know under which circumstances > this occurs/doesn't occur

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread David Castro
Okay, a little more tracking down revealed that handler #5 ("check if the user is ok _here_") is never getting called when my module is being used, but is for Basic auth.  Happen to know under which circumstances this occurs/doesn't occur?  Maybe there is something else I can

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread David Castro
on 08/30/04 15:01 Geoffrey Young wrote: Ooops, yeah. A follow-up email corrected "mod_authz_ldap" to "mod_auth_ldap". Sorry 'bout that. To give a bit more detail, I am using "mod_authz_ldap-0.22" on Apache 2 under RHAS 3.0. Went looking through the C code of the authz module and fou

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread Geoffrey Young
> Ooops, yeah. A follow-up email corrected "mod_authz_ldap" to > "mod_auth_ldap". Sorry 'bout that. To give a bit more detail, I am > using "mod_authz_ldap-0.22" on Apache 2 under RHAS 3.0. Went looking > through the C code of the authz module and found the function it gets > the credentials f

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread David Castro
uired to get things working. Hrmm. Yeah, this is what I had thought and tried at one point with no luck. When I use basic auth and let mod_authz_ldap do it's thing, I get "...basic LDAP authentication of user 'test'...", but with my auth module (us

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread Geoffrey Young
; to get things working. >> >> > Hrmm. Yeah, this is what I had thought and tried at one point with no > luck. When I use basic auth and let mod_authz_ldap do it's thing, I get > "...basic LDAP authentication of user 'test'...", but with my auth &

Re: Trick PerlAuthzHandler into thinking Basic Auth occurred

2004-08-30 Thread David Castro
on 08/30/04 12:09 Geoffrey Young wrote: Heh. Yeah, maybe the point I needed to make more clear is this. The PerlAuthenHandler is NOT relying on basic auth to actually have ever occured. It is a handler that gets credentials via another service altogether. Suffice it to say that no