You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.
As part of our external PCI audit munkiwebadmin has a vulnerability with django where the form password elements do not have autocomplete turned off.
Here is how to correct this:
Fix AutoComplete on Password fields
In Finder, go to /usr/local/munkiwebadmin/lib/python2.7/site-packages/django/forms
Make a copy of widgets.py
Edit widgets.py
Find "class PasswordInput(TextInput):"
On the line "def init(self, attrs=None, render_value=False):"
As part of our external PCI audit munkiwebadmin has a vulnerability with
django where the form password elements do not have autocomplete turned off.
Here is how to correct this:
Fix AutoComplete on Password fields
In Finder, go to
/usr/local/munkiwebadmin/lib/python2.7/site-packages/django/forms
Make a copy of widgets.py
Edit widgets.py
Find "class PasswordInput(TextInput):"
On the line "def init(self, attrs=None, render_value=False):"
As part of our external PCI audit munkiwebadmin has a vulnerability with django where the form password elements do not have autocomplete turned off.
Here is how to correct this:
Fix AutoComplete on Password fields
In Finder, go to /usr/local/munkiwebadmin/lib/python2.7/site-packages/django/forms
Make a copy of widgets.py
Edit widgets.py
Find "class PasswordInput(TextInput):"
On the line "def init(self, attrs=None, render_value=False):"
Replace it with
"def init(self, attrs={'autocomplete':'off'}, render_value=False):"
The text was updated successfully, but these errors were encountered: