Skip to content

Instantly share code, notes, and snippets.

@euank
Created December 5, 2013 04:12
Show Gist options
  • Save euank/7799958 to your computer and use it in GitHub Desktop.
Save euank/7799958 to your computer and use it in GitHub Desktop.
Bank of America Password box
<input class="TL_NPI_Pass tl-private" name="newPassCode" id="tlpvt-new-passcode" maxlength="20" value="" oncopy="return false" onpaste="return false" type="password">
There are two problems here:
1. maxlength="20". That's pretty darn short for a password for my *bank*
2. onpaste="false". Using a password manager (like keepass) is MORE secure than having short and memorable passwords. This discourages people from using secure techniques like that. I doubt most BoA users are technical enough to get around that, but even for those that are it's inconvenient.
I plan to switch from BoA at my earliest convenience.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment