Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

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 odpovede
  • 1 má tento problém
  • 37 zobrazení
  • Posledná odpoveď od Vivek Sang

more options

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.
Priložené obrázky

Vybrané riešenie

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.

Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (2)

more options

Vybrané riešenie

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.

more options

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.