Forum Moderators: phranque
Signed,
Interested in Security
I didn't know that browsers could remember user data like that.
Interested in Security
You might want to check out the excellent Apache documentation on this topic, especially the security caveat:
[httpd.apache.org...]
[httpd.apache.org...]
As they say:
Basic authentication should not be considered secure for any particularly rigorous definition of secure.
Passwords are sent as plaintext, so anyone who wanted to break in just needs to listen to the traffic and they're in. If you need real security, then you need a scripting language, perhaps a database, a https cert and all the rest of it. Basic authentication is only good for resouces of little value.
If you need real security, then you need a scripting language, perhaps a database, a https cert and all the rest of it. Basic authentication is only good for resouces of little value.
How is using a scripting langauge and database and encrypting the connection with SSL any more secure than using Basic auth over SSL?