changing only sambaNTPassword independently #745
Replies: 3 comments 3 replies
-
Hello, thanks for your message. Indeed you can achieve this by commenting a few lines. Maybe this can be developped as a feature in a new tab, like changing the SSH key. |
Beta Was this translation helpful? Give feedback.
-
This is what is in my config.inc.local.php:
These lines are commented out:
in htdocs/change.php:
|
Beta Was this translation helpful? Give feedback.
-
A simple option would be to have a configuration parameter that will bypass the main password change. But this would not work if you need both feature at the same time : one screen to change the main password, and one screen to change the application password. I don't know if this would be really useful. |
Beta Was this translation helpful? Give feedback.
-
Hi!
This is mainly for sharing my claims and findings to ldap ssp. This is not a feature request since you would need to update all translations, which is too much for this little feature.
Since NTLM-Hashes are known to be insecure, I wanted them to represent another password then the actual user password.
Here is my little story why I need NTLM-Hashes: I have an LDAP-Directory in 389-ds with users mainly beeing managed by Keycloak. The user password is hashed with pbkdf2 in both applications, a pretty secure hashing method. I wanted the same user accounts to be also able to connect to our WLAN via PEAP-MSCHAPV2, so I needed either cleartext passwords or, for a little bit of extra security, NTLM-Hashes. But since I wanted to preserve the security of pbkdf2, there needed to be two independent passwords: one for the actual user, represented by pbkdf2 hash, and one "WLAN" password, represented by the NTLM hash.
The authentication and changing flow I needed was:
How I accomplished this I will post here later on, I only needed to comment out like 3-4 lines.
tl;dr Update NTLM-Hashes independently to the actual user password for PEAP-MSCHAPV2 to preserve security of better hashing algorithms
Beta Was this translation helpful? Give feedback.
All reactions