Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

270
votes
21answers
10k views

How should I ethically approach user password storage for later plaintext retrieval?

As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue (either to email a ...
8
votes
3answers
86 views

For emergencies: share part of pass with 4 people, decryptable with 2 persons

Let's say I have a password: AAABBBCCCDDD I could easily give person A the first part (AAA), person B the second part and so on. But is there an option any two of the four people can decrypt/form ...
8
votes
5answers
1k views

How to not hardcode passwords?

In my last question "Portable database for storing secrets" the best answer until now tell to use sqlite-crypt. Reading sqlite-crypt docs, the new param for open the database is the pass-phrase. Of ...
7
votes
2answers
312 views

php salt my passwords per user sha512 - am I doing this right?

I'm trying to correctly do a per user and site wide salt for my passwords. Here's what I've got: require('../../salt.php'); //this is above the web root and provides $salt variable $pw = ...
6
votes
3answers
1k views

PHP Password storage with HMAC+nonce - Is nonce randomness important?

A few years I asked here on stackoverflow about how to make PHP password storage safe. The main answer suggests using the following hashing algorithm: function hash_password($password, $nonce) { ...
5
votes
2answers
72 views

Is there a standard to store username and password in WP7 applications?

I would like to ask if there is a standard to store username and password in a Windows Phone application. I am working on a project that validates the user on every request that is called. So, I want ...
3
votes
2answers
51 views

One time salts and server password comparison

I've read that one of the more secure ways to authenticate a user is to use one time salts when hashing the password. What I don't get is: If the client generates a new salt every session, won't the ...
3
votes
2answers
101 views

Re-hashing a hashed password

Assumed knowledge Hashing, Salting, PBKDF[1-2] Problem I am storing passwords in my database using a scaled hashing/salting algorithm like PBKDF2. I thought 'Hey, if i hash my passwords 20000 times, ...
3
votes
4answers
416 views

Safely store credentials between website visits

I'm building a website which allows users to create accounts and access the site's content. I don't want users to log in each time they visit the site, so I'm planning on storing the username and ...
3
votes
6answers
2k views

Password storage in source control

We store all our application and db passwords in plain text in source control. We do this as our build/deploy process generates required configuration files and also does actual deploys that require ...
3
votes
4answers
388 views

Encryption of passwords on disk for open source desktop applications

Is it possible to store passwords on the local system (Windows XP) that can only be accessed by the application itself? My instinctive answer would be "no". Even if some kind of hashing or encyption ...
2
votes
1answer
135 views

Storing bcrypt hashes

According to PHP's doc, bcrypt salt are made of "$2a$", a two digit cost parameter, "$", and 22 digits from the alphabet "./0-9A-Za-z" So, if i use the crypt() function to hash my passwords, ...
2
votes
3answers
156 views

What is the best practice for securely storing passwords in Java

What would be the recommended way for storing passwords in a Java desktop application? I want the user to have the ability to enter the credencials only once and not be prompted again. On personal ...
2
votes
2answers
60 views

Secure website password storage

I've seen a number of posts about using salts and hashes to create secure versions of passwords that can be stored in a database. However, one question is puzzling me and I can't see a problem so I ...
2
votes
6answers
300 views

How do I create and store md5 passwords in mysql

Probably a very newbie question but, Ive been reading around and have found some difficulty in understanding the creation and storage of passwords. From what i've read md5/hash passwords are the best ...
2
votes
4answers
228 views

How to store a password without a database (PHP)?

I would like to have a page that requires a password to login, but without a dataabase. I was thinking of having it hard coded in the page, ie: $password = "something" Or encrypt it and store it ...
2
votes
4answers
139 views

Automated login and password storage

I wrote a simple PHP script to log into my mobile phone provider's website, check my balance, and send me an email if it's too low. I put the script on a distant server. It seems that I have to store ...
1
vote
1answer
52 views

jBCrypt alternative? Threadsafe and with a bigger community

To hash passwords (one-way), it looks like bcrypt is the best. I am about to start using jBCrypt, but I have a few worries: No mailing list. Very low activity overall. Bug tracker has only ever had ...
1
vote
2answers
64 views

in wordpress i want to send the user his password by mail?

i have a workflow in which a user when gets approved by system. Gets his login credentials as username and password. I want to send the user when he is approved his username and password in a mail. I ...
1
vote
5answers
74 views

Do banks store passwords as plain text? [closed]

I've seen some websites, particularly banking sites, that ask you to enter this (for example). Sometimes they ask for this to prove my identity over the phone. The 2nd character of your password The ...
1
vote
2answers
117 views

Is hash(site || password || salt) actually a bad idea? [closed]

Suppose I were designing a web service with modest security requirements. For the most part, the threat model would be more about bored college students and less about anything you'd ever find in a ...
1
vote
2answers
187 views

How to store a user's password to another web application

I'm building a web application that shows users interesting visualizations of their Gmail activity (who they're emailing the most, etc). Obviously the user needs to give me his Gmail password to use ...
0
votes
4answers
92 views

Creating and storing Password in Android

I am developing an android application that allows access to its contents when the user enters the password. I do not want to include a database, i just want the application to be able to create a new ...
0
votes
2answers
308 views

Username and password storage location

I am writing a program in vb.net that requires a user to log in before he can use the application. The main user is created when the program is installed, similar to how windows works when it is ...
0
votes
2answers
1k views

MySQL Check if username and password matches in Database

I have a form which has a textbox with the name attribute username and another one with the name attribute password. I also have a database with columns called user and pass. When my users signed up ...
0
votes
2answers
107 views

Saving login password

I'm writing a desktop app that retrieves e-mails from an IMAP server. For convenience, the user is given the option to save his username and password for the login screen, so he doesn't have to enter ...
0
votes
5answers
1k views

Castle ActiveRecord / NHibernate - Password Encryption or Hashing

What is the proper way to work with Passwords you don't want to store in clear text in a database? What are my options in NHibernate / Castle ActiveRecord? UPDATE: I was interested in how others ...