Is there a way to view password stored in Windows Credentials?

I have a list of credentials stored in my Windows Credential Manager. But I can't view those passwords. Is there any way to see those credentials?enter image description here

1

4 Answers

You could try Network Password Recovery tool from Nirsoft

4

If you are a developer you could take advantage of this library to find your stored Windows Credentials.

Here's a single .cs file to print the password of a generic credential:

I'm not redistributing a binary since reading credentials is a dangerous thing and you should verify what you run before you download a tool from the internet to read your passwords. Just add that single C# file to a new C# console app and run.

1
pip install pywin32 keyring
python -c "import keyring;print(keyring.get_password('user', 'password'))"

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like