[SOLVED] Auth mechanisms are case sensitive

antipiot

Well-Known Member
Jan 26, 2019
67
5
48
37
Hey!

Noticed while doing some tests that the ldap authentification is case sensitive.
It seems to be the case for all the auth mechanisms aswell:
Root is not the same user as root

1596018580293.png

Is this expected? is it done on purpose for any reasons?

On my side, i would expect it to not be case sensitive:
administrator@test should be logged in as Administrator@test
1596018364123.png

Thanks for you answers and help!

Regards

JS
 
Last edited:
users are case-sensitive on Linux, e.g.:
Code:
$ sudo -u Root whoami
sudo: unknown user: Root
sudo: unable to initialize policy plugin

$ sudo -u root whoami
root
 
  • Like
Reactions: Moayad