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

FF puts credentials to url of XHR request. Is it a security risk?

I am making a PROPFIND Ajax request to server using XmlHttpRequest in Firefox. The server is using Basic authentication. I pass credentials to to open method: xhr.open("PROPFIND", "https://serv/folder/", false, "User1", "password"); Using Fiddler I…
IT Hit WebDAV
  • 5,652
  • 12
  • 61
  • 98
1
vote
1 answer

Apache HttpAsyncClient

I am testing the Apache HttpAsyncClient, in particular I want to make an asynchronous HTTP POST Request where authentication is needed. I use this example as reference. So far I found out how to set Application type and body but can't find out how…
1
vote
4 answers

SSH on windows without storing password in clear

What I would do is using Putty (or other solution) on Windows to connect to a SAN switch and get results from a command with ssh. I use Powershell as scripting language and it could be done easily but i don't want to save the password in the…
timmalos
  • 532
  • 3
  • 9
  • 24
1
vote
1 answer

Paypal returns API credentials are incorrect

I have been fighting this issue for five days now. It is an enigma to me. Can anybody find out why this code returns error52003, API credentials are incorrect? Your help or fresh view is much appreciated.…
1
vote
1 answer

I tried to call a post request using PHP code, but I got 401 Unauthorized error.

I tried to send a post request using this PHP code but throw me 401 Unauthorized error: $username = 'MyDomain\testuser'; $password = '123456'; $url = 'http://10.20.30.40:8080/TargetPage.aspx'; $data = array( 'username' => $username, …
J - C Sharper
  • 1,567
  • 7
  • 23
  • 36
1
vote
6 answers

Setting SharePointOnlineCredentials - catastrophic failure - COMException

I have the following code in use within 2 web application projects, both of which are part of the same solution. The two projects interact with each other, one contains a web service and code that builds a Pivot Viewer collection (CXML + images),…
kannankeril
  • 187
  • 1
  • 6
1
vote
2 answers

Audit Failure, Credential Validation 4776

The logon events for the same are successful. The audit failure problem is with only 4776 events. Can someone help to resolve this? The avmgr is domain account. Same is used for accessing ms sql server database. Audit Failure: Log Name: …
sagar
  • 23
  • 1
  • 1
  • 4
1
vote
1 answer

Where do I specify proxy credentials in my WCF client?

I have created a WCF client using channel factory. But I am not able to connect to a server in another machine. I am getting a (407) Prxy Authentication Required exception. WSHttpBinding wsBinding = new WSHttpBinding(); …
Subindev
  • 148
  • 2
  • 10
1
vote
1 answer

Connecting to remote machine without username/password

I get access denied error when I'm trying to connect to a remote cluster using the below code. I wanted to establish connection without supplying username/password in the code. I stored them in Windows Credential Manager. This works when I provide…
Hem
  • 619
  • 13
  • 26
1
vote
0 answers

Credentials prompted while rendering a remote ReportViewer control in MVC4

I am creating one web app (mvc 4) to authorize customers (using membership provider) to view the reports(SSRS 2008) for which they are registered but they don't have any kind of access to our report server. Based on the link How do I render a…
1
vote
3 answers

SQL Server - How to list logins assigned to a credential?

A SQL Server credential is used to allow SQL Server User (not Windows User) to have an identity outside of the SQL Server and to enable them performing various tasks. From the http://technet.microsoft.com/en-us/library/ms189828.aspx site,…
TJA
  • 101
  • 3
  • 6
1
vote
2 answers

Use Azure ACS on Windows Form aplication

I'm using Azure ACS to deal with the user authentication in my site, now I'm building a Windows Form App where the user needs to authenticate with the credentials that are used in the web site. There is anyway to implement Azure ACS with windows…
Joao Ferreira
  • 286
  • 1
  • 5
1
vote
1 answer

Linux, store credentials with process and it's children, grandchildren?

I'm working on a little side project on linux(Ubuntu) where I require one to be authenticated to access a service. My idea is that this authentication should be stored with the process and it's children, and not with the linux user itself. This…
Wildex999
  • 162
  • 10
1
vote
1 answer

try builtin credential first, then prompt for another

I want to query a server for, say memory gwmi win32_freephysicalmemory -computername server1 -credential $cred I know about get-credentials and also constructing an pscredential-object, but i want to first try to query with my current credentials,…
1
vote
0 answers

WCF service call returns Internal Error 500

I am getting Internal Server error 500 while making a call to WCF service from code behind. I am not using any proxy or reference but trying to make a call with HTTPWebRequest object. I have my application pool running under some service account and…