diff options
author | Ermal <eri@pfsense.org> | 2012-11-20 08:22:16 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2012-11-20 08:22:16 +0000 |
commit | 3dc69d374dcfa39094b0332e2516d3ae68467cfa (patch) | |
tree | be5eb6d34a5807406930a39e8f2f8fb31eb14e33 | |
parent | 2d3145989698d39195bc281f8ebab0314fc58cf4 (diff) | |
download | pfsense-3dc69d374dcfa39094b0332e2516d3ae68467cfa.zip pfsense-3dc69d374dcfa39094b0332e2516d3ae68467cfa.tar.gz |
Do not allow autocomplete of the password field to avoid security issues:
-rw-r--r-- | etc/inc/authgui.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/authgui.inc b/etc/inc/authgui.inc index f87494b..cc8b81a 100644 --- a/etc/inc/authgui.inc +++ b/etc/inc/authgui.inc @@ -254,7 +254,7 @@ $have_cookies = isset($_COOKIE["cookie_test"]); <p> <span style="text-align:left"> <?=gettext("Password:"); ?> <br> - <input onclick="clearError();" onchange="clearError();" id="passwordfld" type="password" name="passwordfld" class="formfld pwd" tabindex="2" /> + <input onclick="clearError();" onchange="clearError();" id="passwordfld" type="password" name="passwordfld" autocomplete="off" class="formfld pwd" tabindex="2" /> </span> </p> <br> |