Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force password change with user in AD environments #710

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dipusone
Copy link

@dipusone dipusone commented Sep 8, 2022

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:

  • The ldap_binddn which is used is low-privileged. Namely it cannot modify the password of the user (this is for security concerns)
  • The user password is marked as 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):

If the Modify request contains a delete operation containing a value Vdel for unicodePwd followed by an add operation containing a value Vadd for unicodePwd, the server considers the request to be a request to change the password. The server decodes Vadd and Vdel using the password decoding procedure documented later in this section. Vdel is the old password, while Vadd is the new password.

The change does the following:

  • adds a configuration option ad_force_low_privileged_change
  • if it is set to true it will force the who_change_password to user in change.php

This allows the following flow to happen:

  • The user is marked as User must change password at next logon
  • change.php:
    • The code will take the branch at line 146
    • The code will re-bind with the (low-privileged) manger at line 163
    • $who_change_password will be changed back to user at line 176
  • functions.inc.php
    • The code will take branch at line 457 and use the low-privileged manager bind to change the password for the user

The password change will work even without the need of an high-privilege user

changed option to be more clearly linked to AD envs

Added default option for ad_force_low_privileged_change
@coudot coudot self-assigned this Sep 8, 2022
@coudot coudot added this to the 1.6.0 milestone Sep 8, 2022
@coudot
Copy link
Member

coudot commented Aug 18, 2023

Hello @dipusone, sorry for this late reply.

Your message is very clear, but I don't understand why configuring $who_change_password = "user" is not enough?

@coudot coudot modified the milestones: 1.6.0, Backlog Feb 3, 2024
@coudot coudot added the feedback required Waiting for a feedback label Feb 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement feedback required Waiting for a feedback
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants