Archive for the ‘Password hacks’ Category

Making PHP login more secure with some tweaks in MD5 hashing

There are several methods to make your login script secure. The most crucial step for that is obviously to escape strings using real_escape_string() function that varies from the PHP version. This will get you rid of some common SQL injection attacks via form or address bar. Another thing you must make secure is the user password. […]