RE: [PHP] Most secure way to send a password

2001-12-26 Thread Brinkman, Theodore
by anything short of a brute-force dictionary attack, which nothing can prevent. - Theo -Original Message- From: Papp Gyozo [mailto:[EMAIL PROTECTED]] Sent: Monday, December 24, 2001 5:59 AM To: James Arthur; [EMAIL PROTECTED] Subject: Re: [PHP] Most secure way to send a password

Re: [PHP] Most secure way to send a password

2001-12-24 Thread Papp Gyozo
| | JavaScript doesn't implement any kind of one-way hashing. But that's for a | good reason: suppose JavaScript encoded your password and sent it encoded to | the server. The in-between hacker would retrieve the encoded password as it | is sent to the server and simply pass that as the

[PHP] Most secure way to send a password

2001-12-21 Thread James Arthur
Hi The most insecure part of entering a password in a web form is when you click submit and your password is sent in plain text form to your next PHP script. Is there any way around this without using JavaScript? How secure is it to use HTTP_AUTH? Cheers --jaa

Re: [PHP] Most secure way to send a password

2001-12-21 Thread Bogdan Stancescu
JavaScript doesn't implement any kind of one-way hashing. But that's for a good reason: suppose JavaScript encoded your password and sent it encoded to the server. The in-between hacker would retrieve the encoded password as it is sent to the server and simply pass that as the password - he

Re: [PHP] Most secure way to send a password

2001-12-21 Thread Bogdan Stancescu
As a side note, that's obviously the most insecure part of entering the password because it's the only time you enter the password. :-) The most insecure part of entering a password in a web form is when you click submit and your password is sent in plain text form to your next PHP