summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2012-11-20 08:20:52 +0000
committerErmal <eri@pfsense.org>2012-11-20 08:20:52 +0000
commit6a68440b8a4fec4b6a5689553e27519e540f2643 (patch)
tree7a2707f01d41c9114121ad33c07adc9add514ee2
parent66f445c3bc27304d2a02d0d0bc9f1064c415c745 (diff)
downloadpfsense-6a68440b8a4fec4b6a5689553e27519e540f2643.zip
pfsense-6a68440b8a4fec4b6a5689553e27519e540f2643.tar.gz
Do not allow autocomplete of the password field to avoid security issues:
-rw-r--r--etc/inc/authgui.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/authgui.inc b/etc/inc/authgui.inc
index e950345..ab348a0 100644
--- a/etc/inc/authgui.inc
+++ b/etc/inc/authgui.inc
@@ -247,7 +247,7 @@ if($config['virtualip'])
<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>
@@ -268,4 +268,4 @@ if($config['virtualip'])
<?php
} // end function
-?> \ No newline at end of file
+?>
OpenPOWER on IntegriCloud