TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Elastic Cloud password complexity has an “OR” condition

75 pointsby herpderperatorover 2 years ago

17 comments

modelessover 2 years ago
Or, you could just do what NIST recommends and not impose arbitrary password requirements beyond being 8+ characters and and not appearing in a list of known passwords. <a href="https:&#x2F;&#x2F;pages.nist.gov&#x2F;800-63-3&#x2F;sp800-63b.html#:~:text=no%20other%20complexity%20requirements%20for%20memorized%20secrets%20should%20be%20imposed" rel="nofollow">https:&#x2F;&#x2F;pages.nist.gov&#x2F;800-63-3&#x2F;sp800-63b.html#:~:text=no%20...</a>.
评论 #34321038 未加载
评论 #34324853 未加载
评论 #34321172 未加载
snorremdover 2 years ago
The only requirement for passwords these days should be that the entropy is high enough and that the password is not in password leak databases. Anything other than that is simply asking users to reuse passwords across sites or annoying people who use password managers that generate too complex passwords.<p>Passphrases are perfectly reasonable choices for passwords, but often run foul of the number and special character rules. Worst part is some sites even have very short max length rules for passwords. One can only suspect they either go around thinking people still memorize passwords, or worse, they store passwords in a varchar(12) DB column.<p>The best bet would be to eliminate passwords alltogether using some combination of webauthn key authentication and some other user friendly factor (e.g. TOTP). But as long as passwords are here to stay, make them user friendly.
评论 #34322742 未加载
评论 #34322237 未加载
评论 #34322183 未加载
dec0dedab0deover 2 years ago
I hope this catches on. I hate making 30+ character passwords only to be told I need to add capitals and whatnot to be secure.
评论 #34321572 未加载
评论 #34322404 未加载
评论 #34321866 未加载
kazinatorover 2 years ago
I finally got fed up with the special characters, digits and case bullshit and made myself this.<p><a href="https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;jp-hash&#x2F;" rel="nofollow">https:&#x2F;&#x2F;addons.mozilla.org&#x2F;en-US&#x2F;firefox&#x2F;addon&#x2F;jp-hash&#x2F;</a><p><a href="https:&#x2F;&#x2F;www.kylheku.com&#x2F;cgit&#x2F;jp-hash&#x2F;about&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.kylheku.com&#x2F;cgit&#x2F;jp-hash&#x2F;about&#x2F;</a>
vinay_ysover 2 years ago
Key risk with passwords is reuse across differently vulnerable websites&#x2F;apps. Password complexity enforcement does nothing to address this risk. For many users it may actually push them to reuse passwords.
评论 #34322563 未加载
ARandomerDudeover 2 years ago
Stopped caring when I started using Bitwarden to autogenerate and store long, complex passwords. That was the real game changer.
评论 #34321101 未加载
rayanhtover 2 years ago
i like this, it’s very user-friendly; allows for both “battery correct horse staple”-style passwords and the randomly generated mess you’d get from a password manager
nesk_over 2 years ago
FYI, Github does the same thing too.<p>I really like this way to ensure password robustness, users with password generators are not blocked by some absurd rules.
atoavover 2 years ago
My services have three password rules: 1. the password has to be a certain length (8 or more)<p>2. the password is not allowed to be in the list of the most common passwords<p>3. username, email or similar is not allowed to be in the password
评论 #34322953 未加载
plugin-babyover 2 years ago
Not sure about the specifics, but the concept looks reasonable.
deancover 2 years ago
This takes me to a dropbox page where I have to sign in.
评论 #34321786 未加载
评论 #34322460 未加载
评论 #34321744 未加载
bagelsover 2 years ago
The terms are not well defined enough in the dialog to know whether this is reasonable or not.
cbhlover 2 years ago
I hope this catches on, to allow more xkcd-style &quot;correct battery horse staple&quot; passwords
评论 #34321062 未加载
wodenokotoover 2 years ago
So ... 123456789012345 or passwordpassword
hotenover 2 years ago
What does without complexity even mean?
评论 #34320978 未加载
评论 #34322767 未加载
评论 #34320979 未加载
postalratover 2 years ago
Webauthn can replace passwords if people finally accept that passwords can&#x27;t be made into a good solution.
lupireover 2 years ago
length(&quot;passwordpassword&quot;) &gt; 15chars