Forum Discussion

Authority's avatar
Authority
Occasional Contributor
6 months ago
Solved

Do not offer to save Yubikey Generated OTP

When logging into Delinea Secret Server at work, I am presented with a two step process for logging in. Step 1 is your normal username and password (plus AD domain since it is AD integrated).  1Pass...
  • Authority's avatar
    6 months ago

    I was able to solve my immediate issue through the use of a Tampermonkey UserScript.

    const textbox = document.querySelector("#LoginNewUiUserControl1_RadiusPasswordTextBox");
    textbox.setAttribute("type" , "text");
    textbox.removeAttribute("autocomplete");

    Since the OTP isn't really something that needs to be obscured, I changed the textbox from type=password to type=text and removed the autocomplete attribute entirely.  Now 1Password ignores it, as desired.