RE: mod_auth_radius values

2005-08-19 Thread Ayres G.J.
the cookie? Gareth. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan DeKok Sent: 18 August 2005 16:25 To: FreeRadius users mailing list Subject: Re: mod_auth_radius values Ayres G.J. [EMAIL PROTECTED] wrote: I am developing a web system

Re: mod_auth_radius values

2005-08-19 Thread Alan DeKok
Ayres G.J. [EMAIL PROTECTED] wrote: Ive read through mod_auth_radius-2.0.c and it appears the cookie is a MD5 hash of the users information. So, is it possible to get the information from the cookie? No. The username/password IS in the header. Alan DeKok. - List

Re: mod_auth_radius values

2005-08-18 Thread Alan DeKok
Ayres G.J. [EMAIL PROTECTED] wrote: I am developing a web system that authenticates users to a web site through free radius using the mod_auth_radius module for apache. It all works fine, but I would like to get the username of the user that has authenticated for use on pages once they

Re: mod_auth_radius values

2005-08-18 Thread Ken A
Try the environment variable REMOTE_USER #!/usr/bin/perl print Content-type: text/html\n\n; foreach $key (keys %ENV) { print $key -- $ENV{$key}br; } Ken Alan DeKok wrote: Ayres G.J. [EMAIL PROTECTED] wrote: I am developing a web system that

Re: mod_auth_radius values

2005-08-18 Thread Ken A
or even easier, if apache is setup for SSI, you can just plunk this into your web page where you want the authenticated username: !--#echo var=REMOTE_USER-- Ken Alan DeKok wrote: Ayres G.J. [EMAIL PROTECTED] wrote: I am developing a web system that authenticates users to a web