After a long pause i’m come back on my blog with a post about the development of a secure web login system in PHP with the use of Zend Framework. The issue to build a login system in a web application is quite common. The security aspect of a login system is absolutely important and in this post i have summarized some of the main security points. Of course this is not the final solution but, in my opinion, is a good point of start for PHP developers.



Comments
antych replied ago:
md5(password) is not very secure, all you need is a dictionary of md5 hashes or look for repeated hashes and compare them against list of most popular passwords. Secure login should include random salt for each password.
Voters For This Link (15)
Voters Against This Link (0)