Actions
Bug #2459
closedAdding autocomplete=off in the webGUI forms
Start date:
05/29/2012
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
All
Affected Architecture:
Description
Doing a diff between config.xml versions, I noticed that my pfsense's password was stored in plaintext format in
<proxyuser>admin</proxyuser> <proxypass>password</proxypass>
Checking further, it seems that the Password Manager of my Firefox browser silently auto-completes the proxy username/pass form at System -> Advanced -> Misc
Probably needs a autocomplete="off" to prevent that.
PS: Same problem with the CP voucher webpage last year (which now includes the autocomplete="off" setting).
Updated by Chris Buechler over 12 years ago
- Target version set to 2.1
- Affected Version changed from 2.1 to All
Updated by Jim Pingle over 12 years ago
Apparently you can do this in jQuery by sticking one line in the file somewhere:
$('input').attr('autocomplete','off');
Just have that go on any page that isn't the login form and it should take care of it.
Updated by Jim Pingle over 12 years ago
- Status changed from New to Feedback
- % Done changed from 0 to 100
Applied in changeset fec04267ea5303333839a45149e3cc2edc8250ff.
Updated by Jim Pingle over 12 years ago
- Status changed from Feedback to Resolved
Actions