Re: Remembering Authentication

2000-10-18 Thread Matthew Byng-Maddick
On Tue, 17 Oct 2000, John Saylor wrote: > From: "Ian Frawley" <[EMAIL PROTECTED]> > > Is it not just possible through a perl module as I am not very clued > > up on digital certificates. > Well, you have to have some credentials- and if it's not a cookie [bad > idea anyway], and if it's not a use

Re: Remembering Authentication

2000-10-17 Thread Bill Moseley
At 06:58 PM 10/17/00 +0100, [EMAIL PROTECTED] wrote: > >AuthCookie won't help you here, it still sends a cookie back to the client. >Whatever you do, you will need to modify the response to the client to contain > a session id somewhere where you can get it back. > > From what you've said, you wi

Re: Remembering Authentication

2000-10-17 Thread Simon_Wilcox
[EMAIL PROTECTED] Copy to Bcc Fax to Subject Re: Remembering Authentication The problem for me with cookies is the fact that we are going to be serving WAP phones that don't like cookies for obvious reason

Re: Remembering Authentication

2000-10-17 Thread Sean D. Cook
Why not just write the app to use session and store to the db. It is not hard to do. Auth to db/ldap cook up a digest with $$, username, and remote_ip. Store all userinfo in Storable object in the db/ldap. GET http://some.where.net/?sessionID= POST > No worrying about browser type, client

Re: Remembering Authentication

2000-10-17 Thread Ian Frawley
t: Tuesday, October 17, 2000 10:05 AM Subject: Re: Remembering Authentication Ian,  Using cookies is just one way of overcoming the stateless nature of http.  The other ways that I know of are to modify the url in some way or to put  a hidden field in a form. 

Re: Remembering Authentication

2000-10-17 Thread Simon_Wilcox
TED] Time 19:20 Copy to (bcc: Simon Wilcox/BASE/WilliamsLea) Bcc Simon Wilcox/BASE/WilliamsLea Fax to Subject Remembering Authentication

Re: Remembering Authentication

2000-10-17 Thread Nicolas MONNET
On Tue, 17 Oct 2000, Rodney Broom wrote: |From: "Nicolas MONNET" <[EMAIL PROTECTED]> | |> print $q->redirect("http://$l:$p\@$ENV{HTTP_HOST}/path"); Like what?

Re: Remembering Authentication

2000-10-17 Thread Rodney Broom
From: "Nicolas MONNET" <[EMAIL PROTECTED]> > print $q->redirect("http://$l:$p\@$ENV{HTTP_HOST}/path"); Ack! Can anybody find a bigger security hole than this? Rodney Broom

Re: Remembering Authentication

2000-10-17 Thread Gunther Birznieks
ry clued up on >digital certificates. > >Thanks > >Ian >- Original Message - >From: "John Saylor" <[EMAIL PROTECTED]> >To: "Ian Frawley" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> >Sent: Tuesday, October 17, 2000 8:24 AM >Subje

Re: Remembering Authentication

2000-10-17 Thread Nicolas MONNET
On Tue, 17 Oct 2000, Nicolas MONNET wrote: |On Tue, 17 Oct 2000, Shimon Rura wrote: | ||There's no way to use basic authentication (the stuff inside HTTP) from web ||pages... you can't tell a browser "use this form to ask your user for ||passwords". | |#untested code |use URI::Escape; |use CGI;

Re: Remembering Authentication

2000-10-17 Thread Nicolas MONNET
On Tue, 17 Oct 2000, Shimon Rura wrote: |There's no way to use basic authentication (the stuff inside HTTP) from web |pages... you can't tell a browser "use this form to ask your user for |passwords". #untested code use URI::Escape; use CGI; $q=new CGI; $l=uri_escape($q->param('login'),'^A-Za-z

Re: Remembering Authentication

2000-10-17 Thread Todd Chapman
What if the user added his username and password to the URL? If they are valid the application could add those parameters to all links/form actions, but the plaintext password would be replaced with some parameter that would be good for the next access and expire after a specified period of time.

Re: Remembering Authentication

2000-10-17 Thread Ian Frawley
, October 17, 2000 8:48 AM Subject: Re: Remembering Authentication > Hi > > - Original Message - > From: "Ian Frawley" <[EMAIL PROTECTED]> > > > > Is it not just possible through a perl module as I am not very clued > up on > > digital certific

Re: Remembering Authentication

2000-10-17 Thread Shimon Rura
There's no way to use basic authentication (the stuff inside HTTP) from web pages... you can't tell a browser "use this form to ask your user for passwords". If you want to manage authentication in web pages, you have to build the whole authentication/session management system yourself. Since yo

Re: Remembering Authentication

2000-10-17 Thread John Saylor
Hi - Original Message - From: "Ian Frawley" <[EMAIL PROTECTED]> > Is it not just possible through a perl module as I am not very clued up on > digital certificates. Well, you have to have some credentials- and if it's not a cookie [bad idea anyway], and if it's not a username/password-

Re: Remembering Authentication

2000-10-17 Thread Ian Frawley
, October 17, 2000 8:24 AM Subject: Re: Remembering Authentication > Hi > > - Original Message - > From: "Ian Frawley" <[EMAIL PROTECTED]> > > > Is it possible to authenticate a user without having to use the > > unfriendly login box provided by browsers,

Re: Remembering Authentication

2000-10-17 Thread John Saylor
Hi - Original Message - From: "Ian Frawley" <[EMAIL PROTECTED]> > Is it possible to authenticate a user without having to use the > unfriendly login box provided by browsers, without using cookies? 2 words: digital certificates This probably means a lot of infrastructure [LDAP, CA, sma

Remembering Authentication

2000-10-17 Thread Ian Frawley
Hi all   Is it possible to authenticate a user without having to use the unfriendly login box provided by browsers, without using cookies?   I have managed to authenticate a user once through some text fields on a HTML page but unfortunately this does not make the browser remember the user's