Force password change with user in AD environments #710
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I've added an option to force the password change in AD environments with the 'user' account even when the bind has been done with the manager account.
The scenario is the following:
ldap_binddn
which is used is low-privileged. Namely it cannot modify the password of the user (this is for security concerns)User must change password at next logon
In this instance the bind with the user will fail but, even if
ldap_binddn
is low privileged they can change the user password accordingly to Microsoft documentation (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/6e803168-f140-4d23-b2d3-c3a8ab5917d2):The change does the following:
ad_force_low_privileged_change
true
it will force thewho_change_password
touser
inchange.php
This allows the following flow to happen:
User must change password at next logon
$who_change_password
will be changed back touser
at line 176The password change will work even without the need of an high-privilege user