Questions tagged [credentials]

Credentials in information systems are widely used to control access to information or other resources. The classic combination of a user account number or name and a secret password is a widely-used example of IT credentials.

Credentials in cryptography establish the identity of a party to communication. Usually they take the form of machine-readable cryptographic keys and/or passwords. Cryptographic credentials may be self-issued, or issued by a trusted third party; in many cases the only criterion for issuance is unambiguous association of the credential with a specific, real individual or other entity. Cryptographic credentials are often designed to expire after a certain period, although this is not mandatory. An x.509 certificate is an example of a cryptographic credential.

An increasing number of information systems use other forms of documentation of credentials, such as Biometrics: fingerprints, voice recognition, retinal scans, Facial recognition systems1 , or X.509, Public key certificate, and so on.

2320 questions
1732
votes
21 answers

How to save username and password in Git?

I want to use a push and pull automatically in GitExtension, without entering my user and password in a prompt, every time. So how can I save my credentials in git?
Edson Cezar
  • 17,674
  • 4
  • 14
  • 25
786
votes
36 answers

Remove credentials from Git

I'm working with several repositories, but lately I was just working in our internal one and all was great. Today I had to commit and push code into other one, but I'm having some troubles. $ git push appharbor master error: The requested URL…
balexandre
  • 69,002
  • 44
  • 219
  • 321
528
votes
17 answers

Using cURL with a username and password?

I want to access a URL which requires a username/password. I'd like to try accessing it with curl. Right now I'm doing something like: curl http://api.somesite.com/test/blah?something=123 I get an error. I guess I need to specify a username and…
user246114
  • 45,805
  • 40
  • 106
  • 145
312
votes
15 answers

What is the most appropriate way to store user settings in Android application

I am creating an application which connects to the server using username/password and I would like to enable the option "Save password" so the user wouldn't have to type the password each time the application starts. I was trying to do it with…
Niko Gamulin
  • 63,517
  • 91
  • 213
  • 274
180
votes
9 answers

Android: Storing username and password?

If I want to store the username and password to be used inside an Android application, what is the best way to do it? Is it through the preferences screen (but what if the user misses this?), or pop up a dialog box and ask the user for the…
Legend
  • 104,480
  • 109
  • 255
  • 385
154
votes
10 answers

HttpWebRequest using Basic authentication

I'm trying to go through an authentication request that mimics the "basic auth request" we're used to seeing when setting up IIS for this behavior. The URL is:…
Kenny Rullo
  • 2,157
  • 2
  • 14
  • 7
108
votes
11 answers

Configuring user and password with Git Bash

I am using Git Bash on Windows 7. We are using GitHub as our repository origin. Every time I push or pull I have to provide user and password credentials. I know that my SSH keys are set up correctly, otherwise I would not be able to access the…
eeejay
  • 4,246
  • 7
  • 26
  • 29
92
votes
11 answers

AWS : The config profile (MyName) could not be found

Every time I want to config something with AWS I get the following error : "The config profile (myname) could not be found" like : aws configure I'm using Python 3.4 and I want to use AWS CLI Keyring to encrypt my credentials..
Steve Ritz
  • 1,387
  • 3
  • 9
  • 12
86
votes
11 answers

SVN change username

I found a lot of examples on how to change the username for specific revisions and so on. But what I need is this: I did a checkout with the authentication credentials of a workmate and need to change it to my credentials for future commits. I…
axel freudiger
  • 1,304
  • 2
  • 16
  • 27
67
votes
13 answers

git clone: Authentication failed for

Trying to access private corporate tfs. They gave me access by giving appropriate rights to windows user (domain\login). I'm fine with accessing web interface of tfs, browse repository and stuff. But when I try to run git clone…
SLCH000
  • 1,055
  • 1
  • 11
  • 14
64
votes
2 answers

How to use multiple credentials in withCredentials in Jenkins Pipeline

I have the following step in my declarative jenkins pipeline: I create script which comes from my resources/ folder using libraryResource. This script contains credentials for my autobuild user and for some admintest user. stage('Build1') { …
lvthillo
  • 20,087
  • 10
  • 71
  • 108
59
votes
6 answers

Reset NuGet credentials in VS2017

I've specified wrong credentials, which then were remembered. How do I make NuGet forget it?
kagetoki
  • 3,109
  • 3
  • 11
  • 15
59
votes
2 answers

Remove saved credentials from TortoiseGit

My credentials are saved in TortoiseGit (using Wincred) but my password changed. The only way for me to pull from the repository now is to remove the Credential Helper. How can I simply change the password? Alternately, can I remove my credentials…
Gidil
  • 3,957
  • 2
  • 30
  • 48
57
votes
5 answers

How to remove cached credentials from Git?

I ran: $ git config credential.helper store And then: $ git push origin master After pushing, I entered my credentials and they were saved. I read that they are stored in plaintext, and so now I want to remove my credentials from being saved and…
Max Li
  • 721
  • 1
  • 6
  • 11
48
votes
3 answers

Proper way to send username and password from client to server

This question is not language specific. I'm curious how to properly send username and password from a website login form to a server. My guess is to hash the password, put username/password in the POST body and send it over HTTPS. What's a better…
SundayMonday
  • 17,607
  • 27
  • 94
  • 151
1
2 3
99 100