mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[GH-ISSUE #1089] Add / Modify Password from external i. e. Perl Net::LDAP #393
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#393
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sr-it1 on GitHub (Jan 29, 2025).
Original GitHub issue: https://github.com/lldap/lldap/issues/1089
Hi all,
I'm trying to add or modify a users password via Perl Net::LDAP and was not successful.
I tried to set a password in three different ways to the attribute userPassword:
Do I miss sth? Any ideas?
KR,
Sascha
@nitnelave commented on GitHub (Jan 29, 2025):
You need an LDAP extended operation, password modify.
@nitnelave commented on GitHub (Jan 29, 2025):
(and clear text)
@sr-it1 commented on GitHub (Jan 29, 2025):
@nitnelave: Thanks, I did no see the woods for the trees,,,, setting the password works like charm now ;-)
The next thing I'm facing now is group membership with a modify to the group dn
changes => add => member => dn
results in "Invalid username: Unexpected DN format."
@nitnelave commented on GitHub (Jan 29, 2025):
Are you trying to add a group membership from LDAP? I don't think that's supported. LDAP is mostly read-only, apart from setting passwords and creating users.
@sr-it1 commented on GitHub (Jan 29, 2025):
Yes, that's what I'm trying to do.
If this is not supposed to work, then I'm fine with this, but I would appreciate this as feature.
@nitnelave commented on GitHub (Jan 29, 2025):
It shouldn't be too hard to implement, but I don't have time to do it. If you want to take a crack at it, I can help and review PRs.
@nitnelave commented on GitHub (Feb 22, 2025):
Closing in favor of #643