-
Notifications
You must be signed in to change notification settings - Fork 38
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
Fix rotation or changed password #80
base: master
Are you sure you want to change the base?
Fix rotation or changed password #80
Conversation
fix for: if you want to reconnect to a remote session and your password is changed.
This does not work completely.
|
Do you think messing with the code is everything that has to be done? This changes fit your needs, and your needs only.
Here is my last question. |
Do you think messing with the code is everything that has to be done? This changes fit your needs, and your needs only. take a look into pinvokes If your pwd policy is so restrictive why do you still store all there passwords as plain text in ram? We log in 2 way factor on a system that gives us a rotated password which we can use to log on to a system. When we log in we will always get a new rotated password, which can be used up to 24 hours. |
Now I use pInvoke |
Hi Opvolger, in a radius/otp AD environment had to change the following in your source to get rid of an internal error(NullReferenceException) on relogin of a domain user into a disconnected RDP session: Service.cs Line 508: Changed To: as I have no userinfo4 object for a non-local user at this time Please forgive me for not doing it the right way with a diff, but I am an old sysadmin not used to work with git... ;-) Works now for initial login and relogin to a disconnected RDP session going through the pgina plugin chain (for me only radius) in both cases. |
userinfo4 can be null if account is not a local user account... I will fix this bug. |
if the user was a pgina-user, set password agian.
@schwoerertw can you test it again with the change i have made? |
fix for: if you want to reconnect to a remote desktop session and your password is changed.