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

How do I make Git ask for a username and password every time I push?

Where I work many people use the same computer on the same account. We now use the shell instead of the GUI just for convenience. The first time someone committed it asked for their username and password, but after that just used their account for…
Joshua Johnson
  • 363
  • 1
  • 3
  • 4
26
votes
5 answers

How do I find my host and username on mysql?

I need to open my database through PHP. But I need to know my username and the name of my host (e.g. localhost), and I don't know them. When I used mysql and did my database, it just asked me directly for a password. How do I find my host and…
Audel
  • 2,479
  • 5
  • 24
  • 20
25
votes
6 answers

How to specify Windows credentials in WCF client configuration file

I have a WCF service using BasicHttpBinding with Windows authentication. Most clients are domain accounts and connect to the service using their default credentials. Now I want to connect to the service from an ASP.NET client that is running under a…
Joe
  • 122,218
  • 32
  • 205
  • 338
25
votes
5 answers

Jenkins : use withCredentials in global environment section

I have a Jenkins pipeline with multiple stages that all require the same environment variables, I run this like so: script { withCredentials([usernamePassword(credentialsId: 'COMPOSER_REPO_MAGENTO', passwordVariable: 'MAGE_REPO_PASS',…
Giel Berkers
  • 2,852
  • 3
  • 39
  • 58
25
votes
5 answers

Locally reading S3 files through Spark (or better: pyspark)

I want to read an S3 file from my (local) machine, through Spark (pyspark, really). Now, I keep getting authentication errors like java.lang.IllegalArgumentException: AWS Access Key ID and Secret Access Key must be specified as the username or…
Eric O. Lebigot
  • 91,433
  • 48
  • 218
  • 260
25
votes
5 answers

What is the difference between login and credential in SQL server 2008?

I am a bit confused SQL server windows login and credential. On books online, it says that credential can access resources beyond sql server, but as far as i see windows login might be able to do that that since it is mapped to a windows user. Am i…
blah
  • 399
  • 1
  • 3
  • 6
25
votes
1 answer

WebClient accessing page with credentials

I am trying to access a webpage on a same domain / same asp.net application, that is password protected. Credentials are the same both for webpage firing this call and webpage being accessed. Here is the code, and I don't know why I always end up…
mko
  • 6,638
  • 12
  • 67
  • 118
24
votes
2 answers

DB Schema of a Role Based Access Control

I'm currently developing a member administration for a local association here and I'm developing the database schema at the moment. I'd like to share it with you to improve it and give other an example of a Role Based Access Model (RBAC). I'd…
sled
  • 14,525
  • 3
  • 42
  • 70
23
votes
1 answer

How to store and retrieve credentials on Windows using C#

I build a C# program, to be run on Windows 10. I want to send emails from this program (calculation results) by just pressing a button. I put the from: e-mail address and the subject:, etc. in C# properties, but I do not want to put a clear text…
Erik
  • 894
  • 1
  • 8
  • 25
23
votes
5 answers

How to get AWS command line interface to work in cygwin

I installed the AWS command line interface on my Windows 7 box, and it worked immediately when I called commands from a DOS shell. But DOS, the worst language ever invented, is hideous for any serious scripting. So, I would like to to use the AWS…
23
votes
2 answers

Is it possible to store credentials for automatic Team Foundation Server login?

Is it possible to store the credentials that I use to connect to my Team Foundation Server directly in Visual Studio 2010? I would like to avoid inserting them at every VS launch. The problem is that the machine that host TFS is not in the domain…
Drake
  • 8,225
  • 15
  • 71
  • 104
21
votes
3 answers

xcopy with credentials on remote machine

I am trying to access a remote server on a different domain through its IP address. In run command I entered the following \\XXX.XXX.XXX.XXX\C$\Program Files\ I get a pop up window asking for username and password. I enter it, and accessed the…
Sandy
  • 11,332
  • 27
  • 76
  • 122
19
votes
1 answer

'JKS not found' when trying GoogleNetHTTPTransport

I've been having some troubles with Google Authorization and I've never worked with any "Google credentials-involved" process before. My problem takes place after I've created the credential reader (which I assume means that I could access my…
Juanse Hevia
  • 191
  • 1
  • 4
19
votes
2 answers

Visual Studio sometimes detects configuration issue on jenkins CI server

I have Jenkins CI server which builds various .net projects. The server is on Virtual Machine, connected to ActiveDirectory and Jenkins is running in the context of domain user which is also a local administrator. Software used: Windows 10…
19
votes
1 answer

Docker containers seem to 'inherit' the instance profile of the host ec2. How?

We have a docker container running on an ec2 host. Within that docker container we run some aws cli commands. We haven't defined any AWS credentials within the container. This implies that the container inherits Instance Profile of the host ec2. Is…
n00b
  • 5,843
  • 11
  • 52
  • 82