搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

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 人有此问题
  • 34 次查看
  • 最后回复者为 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.
已附加屏幕截图

被采纳的解决方案

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.

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

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.