SSL Enforcing and password hacking
Posted: 2016-02-03 18:51
There definitely should be an option to enforce secure SSL connection with the app
I've made some work-around in after login global hook:
if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}
But this does not secure logon screen
On the other hand is there any protection against trying to scan password?
(I mean using bot that logs time after time)
I've made some work-around in after login global hook:
if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}
But this does not secure logon screen
On the other hand is there any protection against trying to scan password?
(I mean using bot that logs time after time)