Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Some sites when login used the saved password but soon after login add extra characters to already saved password and ask to update the existing password.

  • 2 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 37 views
  • Last reply by Vivek Sang

I login to the site using saved user login and password with no issue but soon after firefox add extra characters to existing saved password. I don't have any idea why firefox adding extra characters adding to it. Kindly let me know how to resolve this issue. The issue is coming in some more login also but not in all.

I login to the site using saved user login and password with no issue but soon after firefox add extra characters to existing saved password. I don't have any idea why firefox adding extra characters adding to it. Kindly let me know how to resolve this issue. The issue is coming in some more login also but not in all.
Attached screenshots

தீர்வு தேர்ந்தெடுக்கப்பட்டது

It is possible that the website uses JavaScript to modify the password before submitting the form. That makes Firefox ask to update the password.

The submit button has this JavaScript onclick handler attached if I check this in the Inspector.

function onclick(event) {
  javascript: convertTomd5_New();
}

You can create a password block exception to prevent Firefox from asking to update the password.

Read this answer in context 👍 1

All Replies (2)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

It is possible that the website uses JavaScript to modify the password before submitting the form. That makes Firefox ask to update the password.

The submit button has this JavaScript onclick handler attached if I check this in the Inspector.

function onclick(event) {
  javascript: convertTomd5_New();
}

You can create a password block exception to prevent Firefox from asking to update the password.

cor-el said

It is possible that the website uses JavaScript to modify the password before submitting the form. That makes Firefox ask to update the password. The submit button has this JavaScript onclick handler attached if I check this in the Inspector.
function onclick(event) {
  javascript: convertTomd5_New();
}

You can create a password block exception to prevent Firefox from asking to update the password.

Thank you so much. As suggested I made an exception and block the site to save password.