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

How to view PS Scheduled Jobs As Another User

I recently created over 30 PS Scheduled Jobs. The jobs run under the credentials of a service account. After importing PSScheduledJob, Get-Job will get the jobs and I can retrieve the job output. No problem so far. I created another Windows Task…
1
vote
3 answers

automatically login to windows after startup

a client of mine uses the task manager to trigger (start) a process to do something. This process contains a UI, and needs to be a single instance at all times (been taken care of). Everything runs smoothly from the task manager, accept if you need…
user369122
  • 792
  • 3
  • 13
  • 33
1
vote
1 answer

Where to store external credentials in JBoss?

When using WAS we use the j2c credentials store to hold external system's users & passwords. WAS provides some proprietary apis to get this information. The benefit of using this instead of a local file that: - the WAS admin can add/modify…
Diego Lopez
  • 594
  • 4
  • 9
1
vote
1 answer

Android->Settings->Security->StorageType get Value inside app

In newer versions of Android (I guess since 4.2) there is an option called "hardware-backed" and "software only". As Google supposes: Android also now supports hardware-backed storage for your KeyChain credentials, providing more security by…
Rafael T
  • 15,401
  • 15
  • 83
  • 144
1
vote
2 answers

Good way to develop Open Source without exposing credentials?

I develop a web application and push its source code to a public Github repository. The issue is that the PHP code contains database credentials which shouldn't be visible to other people. Now I'm looking for a good way to handle this. I could…
danijar
  • 32,406
  • 45
  • 166
  • 297
1
vote
1 answer

IIS user credential

I'm developing an ASP.NET application that requires to run with windows user credential. In my developing environment I use IIS Express 8.0, so the application run by default with user credential, while in production environment I use IIS 7.5, and…
Naigel
  • 9,086
  • 16
  • 65
  • 106
1
vote
2 answers

How to remove PasswordVault saved credentials when app is uninstalled?

I want the user credentials to be deleted when the window metro app is uninstalled. Its not hapening when I am using password vault for saving passwords. Is there any other way to solve my problem ?
1
vote
1 answer

Using PrincipalContext to ValidateCredentials fails with right password after sending many wrong passwords

using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, domainName)) { isWindowsAutenticated = pc.ValidateCredentials(username, password); } If pass to this code many wrong passwords for a user, then pass in the right password, it…
TheWommies
  • 4,922
  • 11
  • 61
  • 79
1
vote
0 answers

Exception raised while connecting remotely to Exchange only in IIS hosted application

I hope somebody can help me, I have the following function to do remote calls to a powershell server: private static string DoCall() { string resultPs = string.Empty; string serverName = "myserver.com"; string…
Manuel Quintero
  • 113
  • 1
  • 7
1
vote
1 answer

Oauth2 log into google account Android

I try to handle access keys to users, who wants to get some data from their google analytics account. The code worked perfectly for 1 day, but now i cant access the google account any more. It seems to me like the Activity cant get the token…
Friis1978
  • 1,179
  • 9
  • 16
1
vote
1 answer

Passing through credentials for nexus while using maven release plugin

I would like to use credentials of the physical user during the release. I use following stack: my own maven plugin wrapping maven-release-plugin, jenkins, nexus, git. On Jenkins I use parameters and password mask plugin to provide username and…
1
vote
3 answers

Application creating user account in MySQL

I am creating a C++ application the uses a MySQL database. I would like the application to create an account for itself, if possible. I have not found a method to do so. Everytime I port my application, I forget the set up sequence. The current…
Thomas Matthews
  • 56,849
  • 17
  • 98
  • 154
1
vote
0 answers

How to map application credentials to database credentials

As I have been led to believe, the vast majority of web apps use a single database login credential, typically hard-coded into the app code itself or a secured config file. Application logic and sessions take care of managing user interaction with…
Superduper
  • 1,433
  • 2
  • 9
  • 14
1
vote
0 answers

web page python script - how to handle inline credentials?

I have written some scripts that get called in html while a web page is loading. I have occasionally been required to pass credentials to some service in these scripts. An example would be: stdout = subprocess.Popen( ["ldapsearch -H…
SheerSt
  • 3,229
  • 7
  • 25
  • 34
1
vote
0 answers

Get Windows login password - Python

How would I get the user password for the current account on Windows 7 in python? My vision of how it might work: ... passwd = someWindowsApi.GetUserPassword() print("Your current password is: " + passwd) ... Then running the script would output…
DanielTA
  • 6,038
  • 3
  • 23
  • 27