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

c# winforms : getting and using credentials to access a folder on another domain

I am developing a c# Winforms application that runs as a normal user (no elivated privilages) under windows7. The application needs to access a folder that is present on another domain - not the domain the user signed in under. I would like to know…
user169
  • 1
  • 1
0
votes
1 answer

HttpWebRequest with inline credentials not working (i.e. http://username:password@url.com)

I have been trying to get an HttpWebRequest or anything else to give me the HTML of a webpage with a required login. IN a normal browser you do something like: http://username:password@someURL.com However in C#, this fails with a 401 Unauthorized.…
Nick
  • 739
  • 11
  • 22
0
votes
1 answer

How are you able to grab the Window NT Logged User Name using Flex/Actionscript?

How are you able to grab the Window NT Logged User Name using Flex/Actionscript. I have worked with attaining these credentials in ASP.NET, but I am new to the realm of Flex and need some assistance ASP.NET code looks as follows Getting the User…
nholloway4
  • 246
  • 1
  • 4
  • 13
0
votes
1 answer

C2DM - At what point is the app identified?

I as wondering how the Android knows which app to send a push to. I'm guessing that when the app itself (client) registers for c2dm that the key returned is what identifies it as being for THIS app specifically. Is this right? I'm also guessing that…
PaulG
  • 6,920
  • 12
  • 54
  • 98
0
votes
1 answer

Caption and Message only show the first letter when calling CredUIPromptForCredentials API

I am creating a dialog asking for administrative credential by calling CredUIPromptForCredentials API. Here is a snippet of the code: int maxUserID = 100; int maxPassword = 100; int maxDomain = 100; StringBuilder userID = new…
0
votes
1 answer

symfony Credentials is not working for one particular user?

we are developing web portal and we have many credentials to set while user login...but for one particular user, i.e for admin alone credential is not working. is there any particular rules for credentials in symfony???
Pushparaj
  • 538
  • 1
  • 4
  • 16
0
votes
1 answer

How to run `svn log` from Jenkins while protecting credentials?

I'm generating StatSvn reports with Jenkins, and it requires the svn log. While Jenkins protects my SVN credentials from being saved as plain text, I could only make it securely checkout my repository, not generate the log. To svn log I must type my…
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
0
votes
1 answer

Connecting to another AD forest with the same credentials

I have two forests and I'd like to do a series of command on both of them. I have excactly the same username and password on both of the forests. I'm using foreach ($forest in $forests) { Connect-QADService -Service $forest -quiet ((all my commands…
Sune
  • 3,080
  • 16
  • 53
  • 64
0
votes
1 answer

EF 4.1 CF + Azure: CREATE DATABASE permission denied in database 'master'

I have an ASP.NET WebForms application which uses EF 4.1 Codefirst. Running my application the first time creates a new database, tables etc. Everything has been working fine so far. But after adding my application as a WebRole to an Azure Project I…
Ingmar
  • 1,525
  • 6
  • 34
  • 51
0
votes
1 answer

What is the API used by IE to remember proxy credentials?

Those ever working with the Internet Explorer know this dialog: My question is what is the API used to remember the credentials when the respective check box is ticked?
mark
  • 59,016
  • 79
  • 296
  • 580
0
votes
1 answer

Commenting system like Mashable? (user comments with their external sites credentials without creating an account in your site)

I´m struggling with comments. I have a site that has a commenting system, and I want people that has an account with FB, Twitter, or G+, to be able to post comments using those credentials. The thing is that I want something like, let´s say,…
Rosamunda
  • 14,620
  • 10
  • 40
  • 70
0
votes
1 answer

TFS always use integrated credential to connect to TFSServer when joined into the domain

I have a limited access to the TFS server,so I intended to use a administrator account in the code to connect to the server.I found that when I deploy the service on a computer which does not join into the domain,it works just fine,but when deploy…
zanewill
  • 108
  • 7
0
votes
2 answers

Parsing a response for iPhone using ASIHTTPRequest

I'm trying to access a website using my login credentials through an iPhone app but the NSLog just shows the site with the login screen...I need the one AFTER the login screen. My code is as follows: - (IBAction)buttonClicked:(id)sender { …
fmi
  • 512
  • 4
  • 14
0
votes
3 answers

Symfony - how to deal with credentials that contain spaces in security.yml?

Seems like a simple issue, but I can't find the proper reference. I have a system that has some permissions that have spaces in them: contract admin I need to secure an action, so in security.yml i have: action: is_secure: on …
Geoff Maddock
  • 1,700
  • 3
  • 26
  • 47
0
votes
1 answer

Credential storage in client library unit-testing

I just started an open-source project for an Azure table storage client on codeplex called Cyan. I would like to include unit-tests for the project but I don't know what's the best way to store credentials for the tests so that any contributor can…
Maghis
  • 1,093
  • 1
  • 7
  • 15
1 2 3
99
100