loki22
11-15-2003, 09:37 PM
I was wondering if anyone could provide me with any information regarding how secure a php login screen would be. And how to make it most secure
|
Click to See Complete Forum and Search --> : PHP Login Security loki22 11-15-2003, 09:37 PM I was wondering if anyone could provide me with any information regarding how secure a php login screen would be. And how to make it most secure pyro 11-15-2003, 10:49 PM It's as secure as you make it. :) A few basic rules to follow would be to make sure you encrypt the passwords; make sure that you do data scrubbing on any user input; make sure your script does not have any holes that will allos hackers access (obviously!), etc. -kde- 11-16-2003, 07:37 AM Encrypt passwords with md5 and store'em with logins in database. After user's logon encrypt entered password with md5 and put login and password hash into PHP session and redirect user to secured section. Every page in secured section must include module with password checking where script compares user's data in session with user's data in DB. Don't forget to forbid user in case of database connection error... webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |