Tagged Questions

Passwords are primarily used as a way of accessing information and also limiting the number of users who can get access to a machine. It is primarily used with a username for the authorization system. Sometimes people use keys instead of passwords due to the increased strength of the keys.

learn more… | top users | synonyms (1)

274
votes
7answers
19k views

Why is char[] preferred over string for passwords?

In Swing, the password field has a getPassword() (returns char[]) method instead of usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
133
votes
12answers
37k views

Secure hash and salt for PHP passwords

It is currently said that MD5 is partially unsafe. Taking this into consideration, I'd like to know which mechanism to use for password protection. Is “double hashing” a password less secure than ...
92
votes
42answers
4k views

Should We Mask Passwords?

From Jacob Nielson's "Stop Password Masking": Usability suffers when users type in passwords and the only feedback they get is a row of bullets. Typically, masking passwords doesn't even ...
92
votes
25answers
32k views

How best to generate a random string in Ruby

I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z] value = ""; 8.times{value << (65 + rand(25)).chr} but it looks junky, and since it isn't a ...
78
votes
5answers
16k views

How do you use bcrypt for hashing passwords in PHP?

Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rulllez!!!11" OK, but what is this bcrypt? PHP doesn't offer any such functions, wikipedia babbles about a ...
71
votes
15answers
20k views

Cannot import the following keyfile: blah.pfx. The keyfile may be password protected

We just upgraded our Visual Studio 2008 projects to VS2010. All of our assemblies were strong signed using a Verisign code signing certificate. Since the upgrade we continuously get the following ...
66
votes
13answers
19k views

Disable browser 'Save Password' functionality

One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doing ...
53
votes
10answers
3k views

Preferred Method of Storing Passwords In Database

What is your preferred method/datatype for storing passwords in a database (preferably SQL Server 2005). The way I have been doing it in several of our applications is to first use the .NET encryption ...
49
votes
7answers
12k views

Salting Your Password: Best Practices?

I've always been curious... Which is better when salting a password for hashing: prefix, or postfix? Why? Or does it matter, so long as you salt? To explain: We all (hopefully) know by now that we ...
47
votes
8answers
3k views

PHP 2-way encryption: I need to store passwords that can be retrieved

I am creating an application that will store passwords, which the user can retrieve and see. The passwords are for a hardware device, so checking against hashes are out of the question. What I need ...
45
votes
12answers
2k views

What is md5() for?

I was reading this tutorial for a simple PHP login system. In the end it recommends that you should encrypt your password using md5(). Though I know this is a beginners' tutorial, and you shouldn't ...
43
votes
10answers
13k views

Best way to store password in database

I am working on a project that has to have authentication (user name/pass) It also connects to a database so i figured i would store the user name and password there but it seems like not such a ...
39
votes
1answer
5k views

Do I need to store the salt with bcrypt?

bCrypt's javadoc has this code for how to encrypt a password: String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt()); To check whether a plaintext password matches one that has been ...
37
votes
11answers
77k views

Is there a way to crack the password on an Excel VBA Project?

I've been asked to update some Excel 2003 macros, but the VBA projects are password protected, and it seems there's a lack of documentation... no-one knows the passwords. Is there a way of removing ...
36
votes
6answers
11k views

SHA512 vs. Blowfish and Bcrypt

I'm looking at hashing algorithms, but couldn't find an answer. Bcrypt uses Blowfish Blowfish is better than MD5 Q: but is Blowfish better than SHA512? Thanks.. Update: I want to clarify that ...
35
votes
18answers
3k views

Phonetically Memorable Password Generation Algorithms

Background While at the Gym the other day, I was working with my combination lock, and realized something that would be useful to me as a programmer. To wit, my combination is three seperate sets of ...
34
votes
11answers
2k views

Why should checking a wrong password take longer than checking the right one?

This question has always troubled me. On Linux, when asked for a password, if your input is the correct one, it checks right away, with almost no delay. But, on the other hand, if you type the wrong ...
32
votes
5answers
10k views

How can I store my users' passwords safely?

How much more safe is this than plain MD5? I've just started looking into password security. I'm pretty new to PHP. $salt = 'csdnfgksdgojnmfnb'; $password = md5($salt.$_POST['password']); $result = ...
31
votes
10answers
2k views

Is 5-digit PIN better than most passwords?

This is something that's been bugging me for many years: why most online services highly value the entropy of a password, citing it as a security measure, and enforcing it when users select a ...
29
votes
9answers
2k views

Why restrict the length of a password?

I've just signed up to a site to purchase some goods, and when I tried to enter my (reasonably secure) password I was informed it was too long, and that I should enter a password between 5 & 10 ...
29
votes
16answers
14k views

Encrypting/Hashing plain text passwords in database

I've inherited a web app that I've just discovered stores over 300,000 usernames/passwords in plain text in a SQL Server database. I realize that this is a Very Bad Thing™. Knowing that I'll have to ...
28
votes
12answers
37k views

C# What is the easiest way to encrypt a password when I save it to the registry?

Currently I'm writing it in clear text oops!, it's an in house program so it's not that bad but I'd like to do it right. How should I go about encrypting this when writing to the registry and how do I ...
25
votes
9answers
2k views

Is time() a good salt

I'm looking at some code that I have not written myself. The code tries to hash a password with SHA512 and uses just time() as the salt. Is time() too simple a salt for this or is this code safe? ...
24
votes
9answers
21k views

MySQL: what data type to use for hashed password field and what length?

I'm not sure how password hashing works (will be implementing it later), but need to create database schema now. I'm thinking of limiting passwords to 4-20 characters, but as I understand after ...
24
votes
14answers
8k views

Should I impose a maximum length on passwords?

I can understand that imposing a minimum length on passwords makes a lot of sense (to save users from themselves), but my bank has a requirement that passwords are between 6 and 8 characters long, and ...
24
votes
4answers
3k views

How to store passwords in Winforms application?

I have some code like this in a winforms app I was writing to query a user's mail box Storage Quota. DirectoryEntry mbstore = new DirectoryEntry( @"LDAP://" + strhome, m_serviceaccount, ...
23
votes
9answers
4k views

Is it secure to store passwords in cookies?

My web application's home page has a RememberMe checkbox.. If the user checks it, i ll store emailId and password in cookies.. My code is if (this.ChkRememberme != null && ...
23
votes
2answers
4k views

Python: Read password from stdin

Scenario: An interactive CLI Python program, that is in need for a password. That means also, there's no GUI solution possible. In bash I could get a password read in without re-prompting it on ...
22
votes
14answers
934 views

What is safer? Should I send an email with a URL that expires to users to reset their password or should I email a newly generated password?

I was wondering what would be the safer option when users have forgotten their password Send a randomly generated new password to the email address (all email addresses in my database are confirmed ...
22
votes
6answers
2k views

Forgot Password: what is the best method of implementing a forgot password function?

I'm wondering what the best method is for creating a forgot password function on a website. I have seen quite a few out there, here are a few or combination of: passphrase question / answer (1 or ...
22
votes
8answers
4k views

Difference between Hashing a Password and Encrypting it

The current top-voted to this question states: Another one that's not so much a security issue, although it is security-related, is complete and abject failure to grok the difference between ...
22
votes
8answers
6k views

Why is a password salt called a “salt”? [closed]

Is there a significance to the word "salt" for a password salt?
21
votes
13answers
25k views

What's the difference between SHA and MD5 (in PHP)?

When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
21
votes
3answers
16k views

How do I remove the passphrase for the SSH key without having to create a new key? [closed]

I set a passphrase when creating a new SSH key on my laptop. But, as I realise now, this is quite a PITA when you are trying to commit(git,svn) to a remote location over SSH many times in an hour. ...
21
votes
19answers
5k views

What is the best way to check the strength of a password?

See also How do you compute password complexity? What is the best way of ensuring that a user supplied password is a strong password in a registration or change password form? EDIT: one idea I had ...
20
votes
2answers
11k views

SVN encrypted password store

I installed SVN on a Ubuntu machine and I can't get my head around something. Whenever I checkout something from the terminal I get this error about saving a non-encrypted password: ...
20
votes
10answers
7k views

Best practices for storing database passwords

I have a database that many different client applications (a smattering of web services, some java apps and a few dot net applications) connect to. Not all of these are running on windows (Sadly, ...
20
votes
5answers
1k views

How do I avoid having the database password stored in plaintext in sourcecode?

In the web-application I'm developing I currently use a naive solution when connecting to the database: Connection c = DriverManager.getConnection("url", "username", "password"); This is pretty ...
17
votes
9answers
681 views

Is it possible to attack a user password with known salt

I've been told that email is a bad salt, because it's not unique and connected to the user. And if a user uses the same password on 2 sites, there will be equal hash. So, what's wrong with it? what ...
17
votes
11answers
725 views

Should server/database config files, including passwords, be stored in source control?

I'm looking to hear some best practices... Assuming a web application that interacts with a few different production servers (databases, etc.)... should the configuration files that include database ...
17
votes
7answers
2k views

What is currently the most secure one-way encryption algorithm?

As many will know, one-way encryption is a handy way to encrypt user passwords in databases. That way, even the administrator of the database cannot know a user's password, but will have to take a ...
17
votes
5answers
866 views

Why are banking passwords so weak?

Out of interest and because it infuriates me, I was wondering if SOmebody here might happen to work for a bank or otherwise know the answer to this. I've used a few online banking sites (UK and ...
17
votes
6answers
4k views

Password Management Best Practices (soup to nuts, not just storage or generation)

We have a site with personal user information. I need to know best-practices for password management. These are average users - should I impose 'hard' passwords? Is there any disadvantage to using ...
17
votes
11answers
2k views

Password generation, best practice

I need to generate some passwords, I want to avoid characters that can be confused for each other. Is there a definitive list of characters I should avoid? my current list is il10o8B3Evu![]{} Are ...
16
votes
6answers
462 views

Password hashing - how to upgrade?

There's plenty of discussion on the best algorithm - but what if you're already in production? How do you upgrade without having to reset on the user? EDIT/DISCLAIMER: Although I originally wanted ...
16
votes
5answers
2k views

Password masking in C# console application

I tried the following code... string pass = ""; Console.Write("Enter your password: "); ConsoleKeyInfo key; do { key = Console.ReadKey(true); // Backspace Should Not Work if (key.Key ...
16
votes
3answers
2k views

Password strength checking library

Can anyone recommend a Java library that contains methods that are suitable for performing server-side password strength checking in a webapp. Ideally the checker should be: configurable, allowing ...
16
votes
5answers
799 views

If I make the SALT random for each user, how do I authenticate them?

I've been reading up on the benefits of salting and hashing passwords, but one thing still eludes me... When I provide a random salt for each user, how do I then know what the salt was when I try to ...
16
votes
7answers
3k views

Generating Random Passwords

When a user on our site looses his password and heads off to the Lost Password page we need to give him a new temporary password. I don't really mind how random this is, or if it matches all the ...
15
votes
6answers
1k views

How to store passwords *correctly*?

An article that I stumbled upon here in SO provided links to other articles which in turn provided links to even more articles etc. And in the end I was left completely stumped - so what is the best ...

1 2 3 4 5 40