Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
Authority
6 months agoOccasional Contributor
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...
- 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.
Authority
6 months agoOccasional Contributor
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.