- Joined
- Apr 17, 2019
- Messages
- 16
- Reaction score
- 0
Hi there.
So aside from the annoyingly alarming "high alert" that made me choose a password that is technically, literally, and mathematically less secure than the previous password I was using (see: https://xkcd.com/936/) – it took me some time realise it was also validating the user ID, which makes barely any sense at all.

So for the fun of it I replaced my secure 20 character long randomly generated hex key I generated using a trusted, secure framework (ruby -rsecurerandom -e 'puts SecureRandom.hex(20)'.upcase) with something entirely guessable and obvious: CompanyName_3CX.
Please stop validating the ID field against the ill informed validator you are using (it's bad enough that the password need only be 10 characters long).
So aside from the annoyingly alarming "high alert" that made me choose a password that is technically, literally, and mathematically less secure than the previous password I was using (see: https://xkcd.com/936/) – it took me some time realise it was also validating the user ID, which makes barely any sense at all.
So for the fun of it I replaced my secure 20 character long randomly generated hex key I generated using a trusted, secure framework (ruby -rsecurerandom -e 'puts SecureRandom.hex(20)'.upcase) with something entirely guessable and obvious: CompanyName_3CX.
Please stop validating the ID field against the ill informed validator you are using (it's bad enough that the password need only be 10 characters long).