Click here to Skip to main content
16,012,508 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

Could you please help me to include a secure login feature into my webpage (like when we login into paypal account,alertpay account,etc). Mainly using PHP,javascript. or any other web technology.
Posted
Updated 16-Nov-11 19:42pm
v2

1 solution

 
Share this answer
 
Comments
Mayjo Antony 17-Nov-11 6:11am    
Any other method to overcome these limitations of the above suggested method.

***Limitations***

This method of authentication has certain limitations.

* Only the user password is secured. All other communication is sent in the clear. For example the username is sent in clear-text, which exposes the user's activity.
* Client may not support JavaScript, which is required to compute the MD5 response. ///Support for such clients may be added through the plain-text login.
* This mechanism only protects against passive eavesdropping. If an attacker was able to act as a proxy between the client and the server, it would be possible to substitute the login JavaScript mechanism with one that sent the password in clear. The attacker would then compute the response using the user's password and authenticate with the server.

Despite these limitations, the MD5 challenge-response method of authentication is in use by some of the most popular sites on the internet including Yahoo!, which is a testament of its credibility.
Mayjo Antony 18-Nov-11 1:14am    
could you please provide me another solution for this... Thats overcome the above limitations.
Mayjo Antony 19-Nov-11 2:22am    
please help me...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900