Mozilla サポートの検索

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 回表示
  • 最後の返信者: 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.