Autocomplete is Enabled
Invicti detected that Autocomplete is Enabled in one or more of the form fields which might contain sensitive information like "username", "credit card" or "CVV".
If user chooses to save, data entered in these fields will be cached by the browser. An attacker who can access the victim's browser could steal this information. This is especially important if the application is commonly used in shared computers, such as cyber cafes or airport terminals.
- Add the attribute
autocomplete="new-password"
to the form tag or to individual "input" fields. Please note that modern browsers might ignore the previously recommendedautocomplete="off"
instruction, due to their integrated password management mechanism. - Find all instances of inputs that store private data and disable autocomplete. Fields which contain data such as "Credit Card" or "CCV" type data should not be cached. You can allow the application to cache usernames and remember passwords; however, in most cases this is not recommended.
- Re-scan the application after addressing the identified issues to ensure all of the fixes have been applied properly.