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
16
votes
2 answers

ManagedIdentityCredential authentication unavailable, no managed identity endpoint found

Im trying to allow an app service (python) to get secrets from azure keyvault without the usage of hardcoded client id/secrets, therefore I`m trying to use ManagedIdentity. I have enabled system & user assigned functions in my service app I have…
lior
  • 161
  • 1
  • 1
  • 4
16
votes
3 answers

Verify domain credentials at command line

Is there a windows command that will allow me to verify a domain account/password?
jing
  • 161
  • 1
  • 1
  • 4
16
votes
1 answer

How can I set ClientCredentials?

I'm trying to consume a WCF service: The config of the service is:
user1428798
  • 1,534
  • 3
  • 24
  • 50
15
votes
4 answers

Android - Where should we save username and password in device memory?

What is a good practice to save username and password on device? I have gone through many answers on StackOverflow and now i am bit confused. I am working on an email app and i want my user to feel absolutely safe while using it. Some people suggest…
Varundroid
  • 9,135
  • 14
  • 63
  • 93
15
votes
2 answers

How to save user log-in state in Android?

I'm trying to build an app with a login module. I want to save the user login state so that the end-user will not have to retype his/her credentials except if they have explicitly logged out. I understand that SharedPreferences can be of some use…
Ahmed Faisal
  • 4,397
  • 12
  • 45
  • 74
15
votes
4 answers

Can Java's 'single sign-on' (use credentials from 'Credential Manager') on Windows be disabled?

Oracle's "Http Authentication" page from the Java SE 6 documentation says that "if you are running on a Windows machine as a domain user, or, you are running on a Linux or Solaris machine that has already issued the kinit command and got the…
15
votes
2 answers

Using credentials for ansible-galaxy with private gitlab repo in a Jenkins Job

I have a set of roles that I need to install with ansible-galaxy. - src: 'https://gitlab.private/role-openstack-net.git' scm: 'git' version: '1.0.0' name: 'role-openstack-net' - src: 'https://gitlab.private/role-openstack-subnet.git' scm:…
Juliatzin
  • 18,455
  • 40
  • 166
  • 325
14
votes
2 answers

What does the value "desktop" mean for the credStore attribute in docker config?

In the .docker/config.json there is the credStore attribute, which apparently the documentation is meant to point to an external credential store like the native keychain of an OS, to look out for the credentials of a registry to push and pull…
quizmaster987
  • 549
  • 1
  • 6
  • 15
14
votes
4 answers

How to add login credentials to URL

I tried https://myserver.com/~username=username&password=mypassword but it doesn't work. Can you confirm that it's possible to pass the user/pass via HTTPs parameters (GET or POST)? Basically, I want to access this link…
MokiNex
  • 857
  • 1
  • 8
  • 21
14
votes
3 answers

Storing credentials in the Android app

How can we safely storing credentials data for access to the smtp-server in Android app? These data are constants and only the developer should know them. At the moment they are stored in the code, but this is not safe, because they can be seen by…
14
votes
3 answers

MongoDB: How to store credentials safely?

Context In my current web application project, I set up a MongoDB database, including server administrator and project users, by means of a number of JavaScript files that are executed with the MongoDB shell. I can't seem to find a way to handle…
ssc
  • 9,528
  • 10
  • 64
  • 94
14
votes
4 answers

AWS credentials not working - ~/.aws/credentials

I'm having a problem with my AWS credentials. I used the credentials file that I created on ~/.aws/credentials just as it is written on the AWS doc. However, apache just can't read it. First, I was getting this error: Error retrieving credentials…
14
votes
3 answers

Working with jenkins credentials

I want to know how to Create the credentials that can be used by Jenkins and by jobs running in Jenkins to connect to 3rd party services.
RCBian
  • 1,080
  • 2
  • 20
  • 31
14
votes
1 answer

How do I pass credentials to a machine so I can use Microsoft.Win32.RegistryKey.OpenRemoteBaseKey() on it?

This .NET API works OK if I'm trying to open the Registry in a machine that's in the same domain as I am (and my logged-on user has admin rights on the target machine). It gets tricky if it's an out-of-domain machine with a different, local…
JCCyC
  • 16,140
  • 11
  • 48
  • 75
14
votes
1 answer

How do I force Git NOT to prompt for credentials

I'm using git clone in a Bash script that takes any type of Git location (HTTPS, Git, SSH, filesystem...) and will clone it. But this script must work without interaction with any user. More precisely, I would like this script to NOT PAUSE for…
vaab
  • 9,685
  • 7
  • 55
  • 60