As a more broad question I would like to ask what is the current best strategy for securing a website login. I know all of the basics, like salting a password, hashing the password, and using SSL to encrypt the transmission, but I feel that may not always be enough. What are the best, “hack-proof” methods out there?
Share
Your points are already the most important ones, additionally you can do this:
header('X-Frame-Options: DENY');.header("X-Content-Security-Policy: allow 'self'");.