|
|
|
|
|
by gizmo686
4661 days ago
|
|
As much as I enjoy linux and its commandline, that is one thing that really annoys me. The number of characters is not that useful of information. For example, in the times it takes to brute force a password known to be N characters, you could have brute forced every password with fewer than N character; so hiding the length of the password is no better than adding one more character.
Furthermore, providing an indication that a key-press was registered prevents the two most common reasons for mis-entering a password: not pushing a key hard enough and pushing a second key while pushing one from your password. Having said that, when I write a script that needs to be provided with a password, I just make it hide what I am typing. "read -s" is so much easier than whatever I would have to do to make it show * s. |
|