The password-storage tag has no wiki summary.
4
votes
1answer
49 views
What Unicode normalization (and other processing) is appropriate for passwords when hashing?
If I accept full Unicode for passwords, how should I normalize the string before passing it to the hash function?
Goals
Without normalization, if someone sets their password to "maƱana" ...
0
votes
1answer
42 views
What is an effective solution to replay attacks on password storage files?
How can I effectively thwart a replay attack on a password file that contains usernames and their passwords hashed with salt (and/or pepper)? The attack I am interested in preventing is as follows:
...
0
votes
2answers
44 views
I was emailed my password, want to confirm this is not secure [closed]
I recently forgot my password for a site and went through their support process for resolving this. They emailed me my original password, in plaintext.
I sent them a scathing email stating that email ...
0
votes
1answer
67 views
How does a Wifi manager encrypt profiles (WinCE)
Hi I am trying to develop a small Wifi manager, and I have one question:
I need to encrypt the profile file when saving it in the disk, and decrypt it when loading it.
I will use a pass-phrase to do ...
0
votes
3answers
99 views
Mysql not retrieving full data from databse [closed]
I'm storing passwords in my Mysql database , these passwords have special characters . The passwords are storing fine but while retrieving these passwords , incomplete passwords are displayed , the ...
0
votes
4answers
93 views
Using Multiple Hashes in PHP
Am working on a project & am keen to keep password-storage secure from the start. In the idea phase, but this is roughly what I intend to use.
class Crypto {
public function hash1($string, ...
0
votes
1answer
336 views
save username and password on sign up and log him/her in if entered correct id and password on next logins
as i m new to android application development ..
i m making a passwords manager type of application ...
so on the first page i have asked for username and password and a button for signup.
if a person ...
4
votes
1answer
64 views
KeyStorage .Net equivalent for Java?
I'm looking for an equivalent to the KeyStorage .Net (http://keystorage.codeplex.com/) library for Java.
The library allows password management on different OS, using the respective native ...
0
votes
1answer
169 views
storing password textfield in database C#
I'm trying to write a simple ASP.Net app that allows the users to log in with their username and password. I'm using an EF database in the .NET Framework 4, coding in C#. My problem is, when the user ...
1
vote
1answer
334 views
bcrypt or progressive passes of sha256?
It seems that the current best practice for storing passwords on the web is to use bcrypt as opposed to sha256 or any other hashing algorithm. Bcrypt seems fantastic, with one flaw as I see it: if I ...
6
votes
1answer
761 views
Should you use AccountManager for storing Usernames and Passwords for an Android app?
I would like to know if one should implement AccountManager to save user credentials such as username, email, passwords etc. I can't find a good reason to use it myself.
I don't want other ...
7
votes
4answers
584 views
Where to store db passwords when using Windows .NET or ASP.NET applications
I have a scenario that has been troubling me for years. If you have to connect to a database or other service (like a web service) using a username and password, where would be the safest place to ...
2
votes
6answers
1k views
Is there a safe way to send a user their password in clear text via email?
If I understand correctly, the biggest problem with sending a password via email is that it requires the password to be stored in clear text in the database. If the DB is compromised, the attackers ...
14
votes
2answers
1k 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
1answer
288 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
1k 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 ...
0
votes
3answers
440 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 ...
1
vote
5answers
210 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 ...
3
votes
2answers
109 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 ...
2
votes
1answer
585 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, ...
1
vote
2answers
214 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 ...
3
votes
2answers
360 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, ...
5
votes
3answers
3k 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
111 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 ...
5
votes
6answers
13k 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 ...
7
votes
4answers
2k 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 = ...
8
votes
3answers
107 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 ...
0
votes
2answers
625 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
3answers
20k 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 ...
2
votes
4answers
599 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 ...
6
votes
3answers
2k 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) {
...
0
votes
2answers
171 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 ...
2
votes
4answers
213 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
2answers
242 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 ...
503
votes
23answers
17k 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 ...
3
votes
4answers
810 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 ...
11
votes
6answers
4k 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 ...
8
votes
5answers
2k 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 ...
0
votes
5answers
2k 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 ...
3
votes
4answers
482 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 ...
