Questions tagged [credential-manager]

Credential Manager allows you to store credentials, such as user names and passwords that you use to log on to websites or other computers on a network.

Credential Manager allows you to store credentials, such as user names and passwords that you use to log on to websites or other computers on a network. By storing your credentials, Windows can automatically log you on to websites or other computers. Credentials are saved in special folders on your computer called vaults. Windows and programs (such as web browsers) can securely give the credentials in the vaults to other computers and websites. For information about saving credentials in a vault.

120 questions
2
votes
2 answers

git cannot logon on popup window, cannot use stored password

Today my brain was somehow fuked up so I upgraded git to version 2.29.1.windows.1. Now every time I try to 'git pull' or 'git clone' etc., it shows a popup window as below. I have two problems here. First, even I input the correct username and…
Mas Zero
  • 503
  • 3
  • 16
2
votes
1 answer

How to authenticate a console application with Exchange Online/EWS Managed API?

I'm developing a console app for personal use that uses the Exchange Web Services Managed API as an alternative to Redemption (which I, unfortunately, cannot use). My ultimate goal is to use the app in a Windows scheduled task to connect to my…
2
votes
1 answer

Visual Studio 17 - GIT Fatal Error: Authentication failed for 'https://tfs.tpsonline.com/.....'

I am using GIT in VS 17 on Windows 10. Every time I try to check in, sync, pull or push branch it gives me authentication failed error. I fix it by updating my password in Windows credentials but I have to do it every time I switch my…
mfs
  • 3,984
  • 6
  • 32
  • 51
2
votes
2 answers

Do I need to manually zero out PCREDENTIAL.CredentialBlob?

I'm using the Windows credentials store like this: PCREDENTIAL cred = nullptr; if (CredRead(entryName, 1, 0, &cred) != TRUE || !cred) return -1; // ... code which handles cred.UserName and cred.CredentialBlob CredFree(cred); As you can see I…
MrTux
  • 32,350
  • 30
  • 109
  • 146
2
votes
2 answers

FIDO2 hardware hits the shelves, but what are the limitations it brings with it?

I read every Yubico publication and looked at the webinars, but they keep some information unsaid for some reason. When using the Yubikey 5 for Single Strong Factor, they claim the authenticator (I guess they mean the physical key's CPU) generates a…
Ira
  • 193
  • 4
2
votes
0 answers

Why IIS CredentialManagement don't wor perfect with IIS

I am having WEB API hosted in IIS and simply it just trying to get credentials from Windows Credentials Manager. In the debugging environment and IIS Express , this works fine, but when it is hosted in IIS, it simply doesn't show the accessed…
Usman
  • 2,742
  • 4
  • 44
  • 82
2
votes
1 answer

Using ReCaptcha with Credentials Management API

Good morning, We have to use two different approaches for customers' login: Credentials Management API: https://developers.google.com/web/fundamentals/security/credential-management/ and ReCaptcha. Do you have an idea on how to make them work…
Bogo
  • 688
  • 1
  • 6
  • 15
2
votes
2 answers

Why should I use One tap sign in over Chrome's Credential Management API

Am a bit confused about the One tap sign in that was announced by google earlier this year. Our application already users Credential Management API in Chrome, which essentially provides the user with login options based on the credentials that user…
2
votes
0 answers

"Cannot open Vault" when accessing PasswordVault on a fresh machine via WinRM

When I connect via WinRM to a new windows machine, I cannot access the PasswordVault of the CredentialManager. [Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime] $vault = New-Object…
2
votes
1 answer

Retrieve Credentials from Windows generic Credentials Store using C# in ASP.net website under IIS

Retrieve Credentials from Windows Credentials Store problem using C# in ASP.net website under IIS I am using following code Local machine and windows 10 IIS its working fine. but when i try to hosting in windows server 2012 R2 not working. My code: …
2
votes
1 answer

Retrieve Credentials from Windows Credentials Store using C# in ASP.net website under IIS

Retrieve Credentials from Windows Credentials Store problem using C# in ASP.net website under IIS I am using following code var cm = new Credential(); cm.Target = "targetname"; cm.Type = CredentialType.Generic; if (!cm.Exists()) { …
Nandkumar
  • 21
  • 4
1
vote
1 answer

Git permission denied error while pushing a repository

I created a repository in my git hub account and came to git bash and Pasted the command: git remote add origin https://github.com/ShreeramNew/RepositoryNow.git git push -u origin master And I got this Response remote: Permission to…
1
vote
1 answer

How to remember github's PAT when pushing into repository from Debian machine?

I have git on my system and github account. Historically when I want to pull, I was needed to type github login and password. That was beautiful because I remember this data by heart. Now I need to enter PAT (Personal Access Token) instead of…
Eimrine
  • 57
  • 4
1
vote
1 answer

Does the credential manager have a limit for the number of credentials stored?

I'm using CredWriteW to store some credentials and persisting through the user session. As we will have to store the credentials for lots of different accounts, I'm wondering: is there some kind of limit as to how many credentials can be stored on…
andre_ss6
  • 1,195
  • 1
  • 13
  • 34
1
vote
2 answers

reading credentials from jenkins credential manager and integrating with python script

I have a python script which is making a couple of api calls and returning the response to me via email. I want to run this script through a jenkins pipeline job. I have a token, which I have stored in the jenkins credential manager as a secret…