Replies: 1 comment
-
Hi, the issue here seems to be that your user’s password property is missing from the serialization stored in the session, so the Could you provide a reproducer? This shouldn’t happen by default. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I'm having some troubles setting up my security user provider.
I'm using CAS authentication (available in Symfony since version 7.1). My CAS server athenticates users againts my AD server so my idea was to pull my user out of my Active Directory server once authenticated.
In order to do this I configured my user provider so that it uses the ldap component for retrieving the user data from the Active Directory.
But recently, IT department decided to remove the password field from the data shared with the users querying the Active Directory server. LDAP component stopped working because it needs to retrieve the password (among other data) in order to ensure that the authenticated user is the one pull from the directory. In my use case, I don't need this password (my user is already authenticated through the CAS server).
Is there a way to bypass this requirement of the LDAP component?
Beta Was this translation helpful? Give feedback.
All reactions