Security Blog
One Time Password Protocol Using Your Email
Do you ever have a login that needs to be secure but you don’t want to create and remember a new random and cryptic password? I do all the time, especially for things that I don’t log in to frequently but still need to be secure. Remembering tons of 12+ random password, even with key store is a pain.
So I created a one time password protocol that I use all the time with popular sites like Twitter
The Protocol
- On computer @ site to login, click the “Forgot Password” link – enter the email you registered with the site
- Generate a random 12+ (100+ if you wanted!) alphanumeric/special char password using a random password generator (they’re all over online)
- Highlight and copy the password (CTRL-C/CMD-C)
- Log in to the email address, click the “Reset Your Password” link in the email you received from the site.
- Paste and submit the new password @ the reset screen
- Return to site login, enter username, paste password
- Copy something random back into the clipboard — like a space
- Forget
Comments are closed.