Re: [PHP-WIN] Password Protecting

2003-11-24 Thread Piotr Pluciennik
To MD5 password before sending to server the most popular way is to use client side javascript. This way it will protect your password from being sent totally unencrypted. In fact, it doesn't give you a good protection, because you still sending and unencrypted information, but sometimes it´s enou

RE: [PHP-WIN] Password Protecting

2003-11-23 Thread Nigel Jones
t; To: [EMAIL PROTECTED] >> Subject: Re: [PHP-WIN] Password Protecting >> >> >> How do you MD5 it before sendig out to server? Is that possible on the >> user side? I guess not... >> >> Piotr Pluciennik wrote: >> >> >Your form is set to GET m

Re: [PHP-WIN] Password Protecting

2003-11-23 Thread Nik
To use the MD5 hashing you do "MD5('variable_name'). Nik "Donatas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How do you MD5 it before sendig out to server? Is that possible on the > user side? I guess not... > > Piotr Pluciennik wrote: > > >Your form is set to GET mode. Your

Re: [PHP-WIN] Password Protecting

2003-11-23 Thread Nik
Thank you. Also I am already using the MD5. Once again. Thanks NIk "Piotr Pluciennik" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Your form is set to GET mode. Your form should work in POST mode. > Think also to MD5 your password before sending over internet. > > HTH > Piotr > >

RE: [PHP-WIN] Password Protecting

2003-11-23 Thread Svensson, B.A.T. (HKG)
y" is free to snoop the TCP/IP traffic and extract the passwd information. -Original Message- From: Donatas To: [EMAIL PROTECTED] Sent: 2003-11-23 09:44 Subject: Re: [PHP-WIN] Password Protecting How do you MD5 it before sendig out to server? Is that possible on the user side? I

Re: [PHP-WIN] Password Protecting

2003-11-23 Thread Donatas
How do you MD5 it before sendig out to server? Is that possible on the user side? I guess not... Piotr Pluciennik wrote: Your form is set to GET mode. Your form should work in POST mode. Think also to MD5 your password before sending over internet. HTH Piotr Nik wrote: Hi Guys 'n' Gals My lo

Re: [PHP-WIN] Password Protecting

2003-11-22 Thread Piotr Pluciennik
Your form is set to GET mode. Your form should work in POST mode. Think also to MD5 your password before sending over internet. HTH Piotr Nik wrote: > Hi Guys 'n' Gals > My login page for my user consits of a text field and a password field. when > the user clicks submit the password is being sh