Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
42
votes
9answers
1k views

Help with salt and passwords

I want to implement a salt into my login system but am a bit confused on how this is supposed to work. I can't understand the logic behind it. I understand md5 is a one-way algorithm and all of the ...
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 ...
35
votes
11answers
17k views

HTTP authentication logout via PHP

What is the correct way to log out of HTTP authentication protected folder? There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work in ...
31
votes
9answers
8k views

Non-random salt for password hashes

UPDATE: I recently learned from this question that in the entire discussion below, I (and I am sure others did too) was a bit confused: What I keep calling a rainbow table, is in fact called a hash ...
22
votes
6answers
2k views

“Remember Me On This Computer” - How Should It Work?

Looking at Gmail's cookies it's easy to see what's stored in the "remember me" cookie. The username/one-time-access-token. It could be implemented differently in cases where the username is secret, as ...
16
votes
5answers
800 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 ...
13
votes
9answers
586 views

Securing a password in source code?

I have a password in my code which is needed to connect to a sftp server. Whats the best way to "obfuscate" or hide it in the code? Thanks
13
votes
8answers
308 views

Increasing security of web-based login [updated]

Right now my login system is the following: Password must be at least 8 characters long, and contain at least one upper and lowercase letter, a number and a symbol. Password can't contain the ...
12
votes
9answers
3k views

How to send password securely via HTTP using Javascript in absence of HTTPS?

The very basic issue all developers face: Whenever user submits the form, the password is sent via network and it must be protected. The site I develop for doesn't have HTTPS. Neither does the owner ...
11
votes
6answers
2k views

Suggestions for library to hash passwords in Java

What Java library should I be using to Hash passwords for storage in a database? I was hoping to just take the plain text password, add a random salt, then store the salt and the hashed password in ...
10
votes
5answers
4k views

Eclipse secure storage

Is it possible to disable completely the secure storage password of Eclipse? I am running Eclipse Helios on Windows 7.
8
votes
6answers
171 views

What is the most accepted method for hiding password for 'connect.php' file?

As my server is getting a bit bigger, and more users are getting access to it, I don't want them to see the password that MySQL is using to connect to PHP, which is stored in my 'connect.php' file and ...
8
votes
2answers
1k views

Python's safest method to store and retrieve passwords from a database

Looking to store usernames and passwords in a database, and am wondering what the safest way to do so is. I know I have to use a salt somewhere, but am not sure how to generate it securely or how to ...
8
votes
4answers
2k views

Read a password from std::cin

I need to read a password from standard input and wanted std::cin not to echo the characters typed by the user... How can I disable the echo from std::cin? here is the code that I'm currently using: ...
8
votes
6answers
2k views

Plain text password over HTTPS

I'm currently working on a PHP OpenID provider that will work over HTTPS (hence SSL encrypted). Is it wrong for me to transmit the password as plain text? HTTPS in theory, cannot be intercepted, so I ...
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
4answers
949 views

Open a Password-Protected Word File in Java?

How can I open a password-protected Microsoft word(.doc, .docx) file in Java, assuming that the password is known?
7
votes
3answers
4k views

How to remove .htaccess password protection from a subdirectory

I have password protected my entire website using .htaccess but I would like to expose one of the sub directories so that it can be viewed without a password. How can I disable htaccess password ...
7
votes
3answers
1k views

So my Excel-VBA project password can easily be cracked… What are other options?

Now that I know that there is an easy workaround to the standard way of locking and password-protecting VBA code, I'd like to move on to more effective ways of protecting code. I am to deliver an ...
6
votes
3answers
220 views

What's the difference between bcrypt and hashing multiple times?

How is bcrypt stronger than, say, def md5lots(password, salt, rounds): if (rounds < 1) return password else newpass = md5(password + salt) return md5lots(newpass, ...
6
votes
3answers
383 views

Windows folder password

I have been thinking to implement the following program, just out of curiosity and learning experience. I want to write a program for password protecting a folder, so you can only open the folder ...
6
votes
8answers
423 views

increasing time delay for login to stop bruteforcing, good idea?

I have set up my db to log every failed login attempt. I thought I would multiply the number of failed attempts with 0.05 seconds or something. Something like: time_nanosleep(0, (50000000 ...
6
votes
4answers
234 views

Methods for encrypting an archive in C++

I'm writing a game that will have a lot of information (configuration, some content, etc) inside of some xml documents, as well as resource files. This will make it easier for myself and others to ...
6
votes
1answer
839 views

Storage of passwords in Google Chrome Extension

I started reading Google Chrome's documentation, and liked it's approach of using HTML and Javascript to create extensions. Reading this tutorial about Local Storage made me think about a lot of ...
6
votes
7answers
397 views

How long should my password salt be, and is SHA-256 good enough?

I'm in the process of creating a gaming community site that I'm aiming to release to the public soon. Currently, I'm working on passwords and logins. I've only used MD5 before, but I've read about ...
6
votes
2answers
2k views

Where does Internet Explorer store saved passwords?

Where does Internet Explorer store saved passwords? And since this is a programming site, i'm not literally asking for the location where IE stores passwords, but which API ie uses to save passwords. ...
6
votes
3answers
663 views

Secure ways to reset password or to give old password

What is the most secure way to handle forgotten passwords/password resets? Should I email the password to the user? If so do you then force them to reset it? Or do you let them reset it immediately ...
6
votes
6answers
428 views

How to upgrade a password storage scheme (change hashing-algorithm)

I've been asked to implement some changes/updates to an intranet-site; make it 'future proof' as they call it. We found that the passwords are hashed using the MD5 algorithm. (the system has been ...
5
votes
1answer
96 views

Which password hashing method should I use?

This question made me start thinking about password hashing again. I currently use bcrypt (specifically py-bcrypt). I've heard a lot about PBKDF2, and scrypt. What I'm wondering is if there are any ...
5
votes
2answers
209 views

Opening and creating password protected zip files with PHP

I have found the following two commands to respecively create and open password protected zip files. I was however wondering if it's possible to do this in pure PHP echo system('zip -P password ...
5
votes
2answers
189 views

Is this byte array a password-protected PDF document?

I have a C# byte array, and I need to know if it's a password-protected PDF document. How can I make this determination? I'm inspecting the document for the PDF magic cookie to determine if it's a ...
5
votes
2answers
569 views

Where do you store database passwords?

What are ways of getting database and other service passwords out of your code? I've read about using per server properties files but when you have a large number of servers it gets to hard to ...
5
votes
4answers
137 views

Public key cryptography with user-chosen passwords?

The whole point is designing a simple system where users are able to send encrypted messages between them (with support from a server). In this scenario, clients have no local storage, so I'm forced ...
5
votes
3answers
386 views

Password salts: prepending vs. appending

I just looked at the implementation of password hashing in Django and noticed that it prepends the salt, so the hash is created like sha1(salt + password), for example. In my opinion, salts are good ...
5
votes
3answers
1k views

Password recovery with sha1 password hashing

I'd like to implement a forgot password function for my website. I hash the passwords using sha1. How would I recover this for the user? What's the best method for implementing this?
5
votes
1answer
482 views

Is it insecure to pass initialization vector and salt along with ciphertext?

I'm new to implementing encryption and am still learning basics, it seems. I have need for symmetric encryption capabilities in my open source codebase. There are three components to this system: ...
5
votes
2answers
458 views

How should I securely store passwords and use http auth in a chrome extension

I'm making a chrome extension that requires fetching an xml file from a secure server. I'm currently using XMLHttpRequest() to make a call to the server https://username:password@mydomain.com ...
5
votes
6answers
978 views

How do I measure the strength of a password?

I was looking for an effective algorithm that can give me an accurate idea of how strong a password is. I found that several different websites use several different algorithms as I get different ...
5
votes
5answers
604 views

Can someone steal a password from a Java application?

Suppose there is a String variable that holds a plain text password. Is there any possibility of reading this password using a memory dump. (Suppose using cheat engine.) I am puzzled with this JVM ...
5
votes
2answers
3k views

Cakephp Password Protection with htaccess and htpasswd - howto?

How can I password protect my website during development with htaccess in Cakephp? which htaccess file do I have to change? what do I have to write in the htaccess where do I put the .htpasswd? I ...
5
votes
2answers
9k views

How password protection of Excel VBA code works?

This question is related to my previous one. Can you explain or give a link to an explanation of how Excel VBA code password protection actually works in versions prior to 2007, and what is the ...
4
votes
3answers
319 views

How to password protect a zipped Excel file in Java?

I have a question about password protecting an Excel file. The situation is that, I have a zip file, that has an Excel file in it. I need to write a Java program, to password protect the Excel file. ...
4
votes
3answers
158 views

how to make a keygen that writes “-” every four letters in C#

I have a quick question. I have a keygen to generate random passwords for my app. It generates capital letters and numbers but I want it to be like in some programs that formats their code like this ...
4
votes
2answers
199 views

Is It okay to save user's salt in the same table as password hash?

Is it okay and isn't useless? It could be saved in another table or even another database. What do you think? P.S. For higher security, I have the constant salt "peanuts" too. It's constant value ...
4
votes
2answers
210 views

How safe is my password decrypting class?

I'm a complete beginner to any sort of decrypting. I wrote a class that I think should be quite secure. Can you give me constructive criticism of how could I improve the algorithm. package main; ...
4
votes
2answers
547 views

Using HMAC-SHA1 for API authentication - how to store the client password securely?

In a RESTful API that uses S3-style authentication, the API client signs the request with his secret key using HMAC-SHA1, so the secret key is never transmitted over the wire. The server then ...
4
votes
5answers
382 views

Creating a Strong Password Scheme When All Data is Stored on Device

Background: I have been working on an Android application that stores data in a local database as my pet project. Lately, I have decided that I want to password protect the application and encrypt ...
4
votes
3answers
601 views

Standardizing of password strength algorithm

Last couple of months I've been wondering about all these password strength meters on websites. If you use the same password in every of those registration forms, the result on meter is sometimes ...
4
votes
2answers
552 views

Is there a way to protect the folder with password?

Is there a way to programmatically protect the folder with password in Android ?

1 2 3 4 5 7