Community

Login Password Protection in Drupal 7 (Important Issue)

Hello All,

I am developing the drupal site with strong User Authenticate procedure ,where i am facing problem secure login. I want encrypt my password while posting to server.

I found module like "Safer Login" and "Encrypt Submission", but Safer Login is for Drupal 6 and Encrypt Submission have issue like, it not work some time. Its have issue. While javascript is disabled ,its not working.

Please suggest any alternate way to it..

Comments

Any reason why an HTTPS

Any reason why an HTTPS connection doesn't work for you?

// Ayesh

Secure Pages

Hi Ayesh,

I have had success in production with http://drupal.org/project/securepages. This module redirects those pages what you would want to run through SSL to a secure connection with the web server. D7 version looks like it is almost out of beta. Maybe worth a shot!

Hope it helps.

John

Correction

Sorry, ment the last post for the original poster.

-----

Hi Surya,

I have had success in production with http://drupal.org/project/securepages. This module redirects those pages what you would want to run through SSL to a secure connection with the web server. D7 version looks like it is almost out of beta. Maybe worth a shot!

Hope it helps.

John

Dear John, Can you please

Dear John,

Can you please tell me ,is this module will encrypt the password during the POST method like encrypt_submission module? Because this feature is essential in some application where password should not post in text format.

Please help me out..
Thanks

Yes it does. Client

Yes it does.

Client (browser) encrypts the submission and only server can decrypt it. Then, Drupal hashes (again, hashes - not encryption) the password and saves it to the database.

// Ayesh