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.

2698 questions
2551
votes
33 answers

How can I save username and password in Git?

I want to use a push and pull automatically in Git Extensions, Sourcetree or any other Git GUI without entering my username and password in a prompt, every time. So how can I save my credentials in Git?
Edson Cezar
  • 25,884
  • 5
  • 19
  • 27
970
votes
40 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
  • 73,608
  • 45
  • 233
  • 342
633
votes
22 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
  • 50,223
  • 42
  • 112
  • 149
321
votes
16 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
  • 66,025
  • 95
  • 221
  • 286
185
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
  • 113,822
  • 119
  • 272
  • 400
176
votes
11 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,467
  • 2
  • 16
  • 7
158
votes
14 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
  • 5,394
  • 8
  • 29
  • 30
141
votes
15 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
  • 2,017
  • 4
  • 12
  • 12
129
votes
22 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,821
  • 2
  • 14
  • 15
109
votes
13 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…
Jack Pan
  • 1,261
  • 3
  • 11
  • 12
96
votes
12 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 wolf
  • 1,446
  • 3
  • 18
  • 29
96
votes
8 answers

Reset NuGet credentials in VS2017

I've specified wrong credentials, which then were remembered. How do I make NuGet forget it?
kagetoki
  • 4,339
  • 3
  • 14
  • 17
84
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
  • 28,263
  • 13
  • 94
  • 127
78
votes
11 answers

What is the default user and password for elasticsearch?

I have installed Elastic with Docker: docker run -p 9200:9200 \ -p 9300:9300 \ -e "discovery.type=single-node" \ docker.elastic.co/elasticsearch/elasticsearch:5.6.2 But curl localhost:9200 fails with an…
Adam Matan
  • 128,757
  • 147
  • 397
  • 562
69
votes
3 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
  • 4,137
  • 2
  • 34
  • 50
1
2 3
99 100