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
1
vote
1 answer

passing http basic auth credentials with backbone.js securely

I have a test REST api and backbone application up and running. The problem is that I need to send api login credentials with every api call from backbone. This in itself is not the problem, but it means that I have to store the api login…
Gilberg
  • 2,514
  • 4
  • 31
  • 41
1
vote
2 answers

Http Authentication using WebSocket4Net

Is there a way to Http Authentication with WebSocket4Net? I would like to pass credentials to my client. This is what my code looks like: public bool Connect(string uri, ICredentials credentials = null) { if (this.ws == null) { try { …
Kingpin
  • 1,067
  • 2
  • 14
  • 34
1
vote
1 answer

Run the ASP .NET web application under a different user than the current user

IIS is utilizing the current logged-user's credentials to access an ASP.NET application. Is it possible to create a login page on the application and pass another users credentials, so that particular web app is run under a different user?
Nertim
  • 380
  • 6
  • 15
1
vote
1 answer

Use biometric for AD domain credentials instead of password

Currently, when we log in to our computers, we are validating our credentials(user name and password) against the AD in our shared domain. This password must be changed every 90 days for security purposes. What I want to do is enable us to log in…
1
vote
0 answers

google credential +calendar scopes issue

I am trying to get access to my google calendar via google credentials. GoogleCredential credentials = new GoogleCredential.Builder().setTransport(httpTransport) .setJsonFactory(jsonFactory) …
1
vote
1 answer

Bypass Credential dialog box of internet explorer

My c# application opens the Internet explorer for different web URL/ domains. And I have all those credential information (username, password and domain name) stored in the database for each web application. Now how I can authenticate automatically…
m23
  • 71
  • 1
  • 4
1
vote
2 answers

WCF Authentication error connecting to IP Address

I have a program which have a wcf service to communicate with other module. I'd like to implement custom authorization and authentication. Sorry for bad code. Here is it: Server: Config:
aleshko
  • 385
  • 3
  • 20
1
vote
4 answers

Is there an Android sharedpreferences equivalent in iOS to save credentials (Username and Password)?

Coming from Android development I use SharedPreferences to store username and password to login to a server using OutputStreamWriter and HttpURLConnection. Now in iOS I am using NSMutableURLRequest to send the username and password. Is there…
Waqleh
  • 9,741
  • 8
  • 65
  • 103
1
vote
2 answers

ServerXMLHTTP Timeout in less than 2 seconds using default timeouts

I have a question involving a "timeout" when sending an HTTPS "GET" request using the ServerXMLHTTP object. In order to fool the object to send the request with the logged in user's id and password, I set it up to use a dummy proxy and then…
1
vote
1 answer

Is it kosher to include my development and test "secrets" in version control?

Rails 4.1.0 introduced a new secrets.yml file. This is what I find myself doing right now: generally for the production environment, I use environment variables and inject them into the file like this: production: secret_key_base:…
Dan Tao
  • 125,917
  • 54
  • 300
  • 447
1
vote
0 answers

Sending a web request to a page which requires Windows Authentication

I would like to know is there any other way to send request to windows authenticated application. Making a web request to a web page which requires windows authentication. The above link worked for me, but I need to send username and password along…
1
vote
1 answer

Open Windows Explorer with network location requiring credentials

Could anyone please advise? I want my winforms app to open a network location. The network location is password protected etc, but that should be left for the user to enter as normal. I tried this but explorer just opens at the default page (my…
stevepkr84
  • 1,637
  • 2
  • 13
  • 23
1
vote
2 answers

Now that I know how to salt & hash passwords, a few more questions

So, let's assume I have read every article/post about appropriately salting and hashing passwords in order to secure user credentials. This means I am not wondering what hashing algorithm to use (SHA1 vs. SHA2 vs. PDKBF2), how to generate the salt,…
1
vote
2 answers

Request admin credentials for part of a project

I have a fairly basic VB.NET project that allows users to restore certain parts of their profiles, should it ever need to be recreated (IE Favourites, Quick Launch, that sort of thing). I have added to the project the ability to restore these…
David Gard
  • 11,225
  • 36
  • 115
  • 227
1
vote
1 answer

Prompt for credentials in ASP.NET / C# page, pass to PowerShell

I'm looking to build a proof of concept / demo webpage that will: Run as a service (no authentication required initially) Prompt for credentials (i.e. to allow providing alternate credentials, ideally capture this as…
Cookie Monster
  • 1,741
  • 1
  • 19
  • 24