I recently bought a *.ninja domain name and started using it for my personal email address. Probably 20% of the time, when I try to sign up for a service it gets rejected by web forms that have been hardcoded to check for traditional top-level domains.
Oh you think that's bad? My email address ends in that most exotic of domains, .net I find websites that won't accept it because they think it's an invalid address all the time. I have no idea what logic they're using, would love to find out.
NULL license plate not such a bright idea
441–450 of 484 posts
Re: NULL license plate not such a bright idea
#442Earlier quoted context omitted.
Wells Fargo’s is 12 IIRC.
Lots and lots of legacy systems do this, very low limit, case insensitive, numbers and letters only. I know of a major retailer with 10 character, case insensitive, alpha numeric for All their systems. Why? Because that’s the lowest common denominator (as400).
Re: NULL license plate not such a bright idea
#443Re: NULL license plate not such a bright idea
#444Earlier quoted context omitted.
Special characters in passwords were highly recommended when rainbow tables were an effective way to attack password hashes. See this old Coding Horror blogpost for an idea what it was like at the time: https://blog.codinghorror.com/rainbow-hash-cracking/ Salted hashes have made rainbow tables less effective. Password managers have made single-use passwords more tenable. Not knowing how a system will store my passwor…
Password Managers are the new goto for obtaining all passwords and web browser zero days make it very easy to lift and then use for a variety of purposes. A simple lined small note book is good, but made secure is best, yet how would you make a pwd note book secure from someone else? This even applies to devices like bank cards and other things which needs a security code of sorts.
There's also this other project, which seems more generic/difficult [2]
1: https://github.com/whs/K2AUSBKeyboard 2: https://github.com/pelya/android-keyboard-gadget
Re: NULL license plate not such a bright idea
#445Related, for those who missed it the last time it was here on HN, the tales of Christopher Null, who has an unfortunate surname: https://www.wired.com/2015/11/null/ , and Jennifer Null , http://www.bbc.com/future/story/20160325-the-names-that-brea... , likewise.
Much-needed Outline.com of the wired.com article: https://outline.com/WMzjYK
Re: NULL license plate not such a bright idea
#446Earlier quoted context omitted.
Yes, this is terribly annoying, often there is a minimum length but no mention of maximum length. I see this on many, many websites...
What kind of range limits are you talking about? 30? 100?
Re: NULL license plate not such a bright idea
#447Tangentially related somewhat-common bug: YAML files will interpret the literal 'no' as boolean false if it's not quoted, instead of as a string. Many developers have wondered why, when they stuck country-specific configurations in a YAML file, that things suddenly stopped working when they expanded support for Norway.
Re: NULL license plate not such a bright idea
#448Earlier quoted context omitted.
What kind of range limits are you talking about? 30? 100?
I remember that Microsoft got stuck with a 16 character limit for a while thanks to hotmail.
You mean until May of 2019?
https://techcommunity.microsoft.com/t5/Azure-Active-Director...
Re: NULL license plate not such a bright idea
#449Earlier quoted context omitted.
Password Managers are the new goto for obtaining all passwords and web browser zero days make it very easy to lift and then use for a variety of purposes. A simple lined small note book is good, but made secure is best, yet how would you make a pwd note book secure from someone else? This even applies to devices like bank cards and other things which needs a security code of sorts.
Make the passwords one character longer than what is noted in the book? Only you know the character and where it is added. For bank cards with fixed lengths, increment/decrement the nth character, swap two characters, or do a circular shift.
Or 2FA, or ....
Re: NULL license plate not such a bright idea
#450Earlier quoted context omitted.
That's absolutely how bits of entropy work.
That's most definitely not how security works. The strength of your password is not proportional to the number of bits of entropy it has.
The strength of a password / passphrase increases with the power of 2 raised to the bits of entropy.
That's an exponential proportion, rather than a linear one. But a proportion all the same.
Example:
Given mixed-case alphanumeric (62 characters) and an 8-character password length, the number of combinations is:
62^8 = 218,340,105,584,896 (keyspace -- 218 quadrillion)
l(62^8)/l(2) = 47.6 (bits of entropy)
A 10 character password (if randomly chosen from the same character set) has 10^17 possibly combinations (about 4,000x more), and 59.4 bits of entropy, 11.8 bits more. 2^11 = 2048.