Reputation: 16984
I have an application that uses Spring Security LDAP for User authentication. What I'm trying to do is build a feature that requires the User to provide their password again for validation of credentials before performing an important process.
The user is already signed in, so I wouldn't want to kick the user out by killing their current session.
Upvotes: 2
Views: 236
Reputation: 16984
I ended up creating a separate service and controller to make a simple LDAP auth and lookup. The service would login with the Spring config settings, then apply the username and supplied password and validate CN result.
Upvotes: 0
Reputation: 1101
This sounds like it could be a tricky requirement to fill. I have one somewhat outside the box solution that could meet the requirement:
Upvotes: 1