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

Impossible to commit changes to SVN from Android Studio

I'm trying to commit some changes to my svn, using Android Studio but I can't. That worked, but suddenly stopped do it. At first the problem said something like: MKACTIVITY forbidden 403. I removed the folder svn.ssl.server as I saw here and…
javisilox
  • 95
  • 9
1
vote
0 answers

Excel VBA WinHttpRequest saved Credentials

I wrote the following code to get the innerHTML text of a website: Public Function GetInnerHtmlBody(ByVal Url As String) As HTMLDocument Dim ResponseDocument As New HTMLDocument Dim MyRequest As New WinHttpRequest With MyRequest …
FireEmerald
  • 1,002
  • 12
  • 21
1
vote
2 answers

Issue with logging in with mySQL and PHP

Im trying to allow users that are on the database to log in if their credentials are present, problem is, whenever I enter details into the login screen, it will always return Invalid Login Credentials, regardless of whether or not the name/password…
user2757842
  • 651
  • 1
  • 11
  • 24
1
vote
1 answer

Get currently logged-in user credentials from Active Directory using ASP

I would love to just use C# and be done with it, but the environment I'm working in blocks every scripting language except Active Server Pages (classic ASP). I've found several resources describing how one can validate Active Directory user…
Jon
  • 9
  • 4
1
vote
1 answer

Make calls to Drive API inside of a Google App Engine Cloud Endpoints

I am trying to build my own endpoints inside of an App Engine Application. There is an endpoint API that needs to ask user for "https://www.googleapis.com/auth/drive.readonly" scope. It performs a list of the Drive API and scan the drive file of…
1
vote
1 answer

Storing SMTP credentials for a VB.Net application

sHi folk, I've been storing SQL connection strings in web.conf which is fine but now I need to store SMTP credentials somewhere protected. web.conf seems like the likeliest place since its protected but how can they be stored? I've added the details…
iamjonesy
  • 24,732
  • 40
  • 139
  • 206
1
vote
2 answers

Use Amazon Cognito to create temporary AWSCredentials

in my Android App I want to create temp credentials for AWS, so that I don't have to store my secret AWS credentials in my app. I use this code to create the credentials: CognitoCachingCredentialsProvider cognitoProvider = new…
JensJensen
  • 1,017
  • 1
  • 12
  • 25
1
vote
1 answer

How can set New Security Credential for ldap Authentication in Java Code

Hashtable env = new Hashtable(11);create environment env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); env.put(Context.PROVIDER_URL, "ldap://localhost:10389/ou=system");url Declaration …
1
vote
1 answer

Possible to store encrypted credentials in a PKCS12 keystore?

I am trying to find a way I can ensure security of credentials within my system. One requirement is that once the passwords are encrypted I need to be able to provide an API that can be used by both Java and C projects. One way to achieve this is to…
user_mda
  • 18,148
  • 27
  • 82
  • 145
1
vote
0 answers

Is there an existing implementation for generating TURN-server time limited credentials?

i want to use a TURN-Server with time limited credentials, because the credentials will be used on client-side in plain text. The process for the webserver is defined…
Jan Möller
  • 301
  • 4
  • 19
1
vote
1 answer

Security/authorization on consuming WCF service

I'm somewhat new to WCF. I've created a service and it works. The service receives some requested keys in an XML string, and returns an XML result set. Here is my general question, and then I'll give some specifics. If someone creates a RESTful…
Scott
  • 11
  • 1
1
vote
0 answers

Issue with PHP Script to reboot Rackspace server

I have been struggling to write a PHP script that will reboot a server using the 1.6.0 version of the Rackspace API (I can't install Composer on my server needed for 1.7.0). Unfortunately it does not want to recognize my credentials and keeps…
douglasw
  • 11
  • 1
1
vote
0 answers

Sharepoint isn't accepting new Credentials initially when switching users

I have a standard website (one webapplication and one site collection) with some custom pages and webparts. The issue I'm having is that when I try to switch users, using the "Sign In As a Different User" and entering new credentials (even for…
Tzn
  • 173
  • 10
1
vote
1 answer

Credentials on using Jenkins git plugin

We have installed a Git server and Jenkins (git plugin). The install succeed. But when we configured a job for a build on Jenkins we had the following problem : Started by user admin [EnvInject] - Loading node environment variables. Building in…
Guillaume
  • 13
  • 1
  • 1
  • 5
1
vote
1 answer

Where should I put my php files that contain smtp credentials?

I've searched around for this answer, and have found a few "solutions", but I don't think I quite understand how to accomplish this. I just finished a query-mobile site that has 11 different PHP files for mailing form submittals. This being my first…