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
19
votes
3 answers

Pass password into -credential

I am trying to login into a computer. I have been playing with various versions and determined that my past questions were when I didn't know what I was really trying to do. I discovered that I was on the incorrect PC when running the script. When I…
narue1992
  • 1,143
  • 1
  • 14
  • 40
19
votes
3 answers

Setting a single server credentials in Maven for multiple repositories

Can I have multiple repositories in Maven settings.xml with a single server credentials? We're using Maven 3.0.4 to deploy artifacts to Nexus pro version 2.2.1 We have multiple repositories on the same server, and a user uses the same credentials to…
Eyal Azran
  • 379
  • 1
  • 3
  • 14
19
votes
4 answers

git-credential-winstore prompt does not work with self hosted repositories

git-credential-winstore works perfect with github and bitbucket repositories, but the prompt does not pop up while working with self hosted repositories. I can' t see what the problem is. I' ve tried : git config --global credential.helper…
Stephan Ahlf
  • 3,310
  • 5
  • 39
  • 68
18
votes
5 answers

Documentation for creating a Custom Credential Provider in Windows

Where is the documentation on creating a custom Windows Credential Provider located? Everything I've found so far points to the same article on how to make a custom credential provider (MSDN Magazine: "Create Custom Login Experiences With…
kberson
  • 439
  • 1
  • 3
  • 8
18
votes
8 answers

Where to store database credentials in a web app?

I'm wondering what techniques you use to store the database credentials for your application. I'm specifically concerned with java webapps, but I don't think there's any need to limit the questions to that. things to consider: Do you use property…
shsteimer
  • 28,436
  • 30
  • 79
  • 95
18
votes
2 answers

Play Services Hint Request cannot display phone numbers when requested

When using the code from google's sms retriever api to first grab the device's phone number, the dialog is shown with a loading spinner, then quickly disappears. In onActivityResult, the resultCode is 1002 and the intent is empty. No documentation…
18
votes
2 answers

How to authenticate with a Google Service Account in Jenkins pipeline

I want to use gcloud in Jenkins pipeline and therefore I have to authenticate first with the Google Service account. I'm using the https://wiki.jenkins.io/display/JENKINS/Google+OAuth+Plugin which holds my Private Key Credentials. I'm stuck with…
18
votes
2 answers

Where's the encryption key stored in Jenkins?

I am trying to migrate the credentials from one Jenkins to another but usernames/passwords are hashed in ${JENKINS_HOME}/credentials.xml I found this answer, but the problem is it doesn't explain where would someone find the encryption key in order…
Fadi
  • 1,329
  • 7
  • 22
  • 40
18
votes
3 answers

ChannelFactory Credentials + object is read only

Greetings, what is the problem that when I try to set credentials for my factory as follows: ChannelFactory factory = Factory; if (factory != null) { factory.Credentials.UserName.UserName =…
niao
  • 4,972
  • 19
  • 66
  • 114
18
votes
2 answers

Secure credential storage in python

The attack One possible threat model, in the context of credential storage, is an attacker which has the ability to : inspect any (user) process memory read local (user) files AFAIK, the consensus on this type of attack is that it's impossible to…
loopbackbee
  • 21,962
  • 10
  • 62
  • 97
17
votes
2 answers

Storing secrets and credentials securely in GitLab

I am wondering if it's possible to store credentials like passwords, tokens and keys safely in my GitLab project. Currently there are a bunch of Java files with some passwords stored in it for testing purposes. However, I don't want to push this…
17
votes
5 answers

Can I cache git credentials on a per-project basis?

Several people are working on several projects on a single webserver via a network share. Each project has their own git repository. When starting a project, we have a personal development environment per developer working on the project and a…
Sumurai8
  • 20,333
  • 11
  • 66
  • 100
17
votes
3 answers

Set credentials on an Android Webview using secured HTTPS connection

I would like to create an Android Webview that connects to a website via a secured HTTPS connection with the use of credentials. First difficulty was to accept the certificate (private), it was solved with this very useful post. Second difficulty is…
Mbolland
  • 285
  • 1
  • 3
  • 4
17
votes
1 answer

git: osxkeychain credential helper silently fails to remember username/password

This page and many like it gives instructions for setting up the osxkeychain credential helper with git. I've followed these instructions; everything seemed to work fine. I can see that my username and password in the Keychain Access application are…
nben
  • 646
  • 5
  • 20
17
votes
3 answers

Consuming own API for web app - Authentication process with OAuth2

Overview I am currently in the process of creating an API for an image sharing app that will run on the web and sometime in the future, on mobile. I understood the logical parts of API building, but I'm still struggling to meet my own requirements…
aborted
  • 4,481
  • 14
  • 69
  • 132