I have been thinking of securing the login system by using a nice long random char password produced on the server and send it as an hidden field to the client. Then I will append the credentials with that password and encrypt it. But then I realized that since, how I append will be visible in code in javascript, its decryption will be fairly easy. So, is there any way that this technique of appending can be safe or SSL is the only option?
Share
Anything that is sent via HTTP is visible and could be intercepted. Use HTTPS at least for login pages.