active questions tagged passwords - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:20:18Zhttp://stackoverflow.com/feeds/tag/passwordshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805940/rails-storing-host-password-for-ftp-model0Rails storing host password for FTP modelTrevor Hartman2009-11-26T22:27:19Z2009-12-22T05:55:04Z
<p>I'm building a rails app that communicates with other servers via ftp. The user needs to input their host, username and password for their particular ftp server. I wouldn't want to store their password as cleartext, but I need the actual password to connect to the server when it comes time. Would it make sense to use a two-way hash?</p>
<p>I found a few implementations that might do the job:<br>
<a href="http://crypt.rubyforge.org/blowfish.html" rel="nofollow">http://crypt.rubyforge.org/blowfish.html</a><br>
<a href="http://crypt.rubyforge.org/blowfish.html" rel="nofollow">http://crypt.rubyforge.org/rijndael.html</a><br>
<a href="http://ezcrypto.rubyforge.org/" rel="nofollow">http://ezcrypto.rubyforge.org/</a></p>
<p>Thanks,<br>
Trevor</p>
http://stackoverflow.com/questions/1942576/salting-passwords-databases-and-security-need-a-little-help1salting, passwords databases and security, need a little help. [closed]Jonathan2009-12-21T20:56:08Z2009-12-22T02:14:45Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/797626/is-using-a-salt-all-that-good">Is using a ‘salt’ all that good?</a><br>
<a href="http://stackoverflow.com/questions/420843/need-some-help-understanding-password-salt">Need some help understanding password salt</a><br>
<a href="http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords">Best way to handle user account authentication and passwords</a> </p>
</blockquote>
<p>I understand the hashing as it means you cant see the password in a readable format.
I don't understand how adding a salt helps</p>
<p>If I hash the word foo say will the result be the same every time?</p>
<p>Also how can i keep my database from being accessed/downloaded from the website?</p>
<p>And whats the best way to keep a password safe in a database/website(ASP.net)</p>
http://stackoverflow.com/questions/1923046/multi-user-password-manager-security-strategy0Multi User Password Manager Security StrategyRonnie Overby2009-12-17T16:45:39Z2009-12-21T15:44:59Z
<p>I am considering creating my own web based, multi user password management software.</p>
<p>The basic question that comes up is, what strategy will I use for secure storage and retrieval of passwords?</p>
<p>Obviously, I don't want to store information in clear text. Should I encrypt/decrypt on the database server, web server, client (javascript), or everywhere? Where will encryption keys live? Should I use a master password (pre shared key) for encryption/decryption?</p>
<p>Are there other questions that I should be asking myself?</p>
<p>I appreciate any suggestions.</p>
http://stackoverflow.com/questions/1511211/reset-password-for-renamed-administrator-account1Reset password for renamed Administrator accountMark Stich2009-10-02T18:48:12Z2009-12-21T07:39:10Z
<p>I need to create a .VBS script to reset the Windows local administrator password on a large group of computers. My problem is that some of our sites have renamed the administrator account for security reasons. Does anyone have a script which changes the password of the administrator account based on the SID of the original Administrator account?</p>
http://stackoverflow.com/questions/1934682/what-is-the-correct-way-to-store-a-database-connection-string-in-a-config-file-fo1What is the correct way to store a database connection string in a config file for production environment?Andrew Kou2009-12-20T02:17:24Z2009-12-20T03:24:57Z
<p>Often in example code for software, I see a connection string eg. mysql://user@localhost
in the configuration file for the software to get access to the database. This seems fine for a test/development server but for production, this seems very insecure. What is the correct way to do this in a production environment? </p>
http://stackoverflow.com/questions/1923620/asp-net-membership-users-with-passwords-and-those-without0asp.net membership users with passwords and those withoutshastadaddy2009-12-17T18:21:12Z2009-12-17T19:42:49Z
<p>I am trying to find a way to handle two types of users for an intranet system. There are users who login and there are those who do not. I need to store both types of users in the membership db. Does anyone have a common solution to this problem?</p>
<p>This is for an event booking system. The users who are in AD will see the app. We need to store the O/S Name along with a few other attributes from AD in our membership db. The O/S Name gets captured using the Request.ServerVariables(). We need to store those "requester" details along with other details about the event that is being booked.. In addition to those users, there are users that actually log into the system. I was hoping to store both types of users in the membership db, so that when an event is retrieved, the user details will get retrieved from the membership db as wel</p>
http://stackoverflow.com/questions/1746369/is-forcing-complex-passwords-more-important-than-salting7Is forcing complex passwords "more important" than salting?Galen2009-11-17T03:18:36Z2009-12-16T04:33:44Z
<p>I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions.
<hr/>
Say the salts on a system are 12 characters. If i'm an attacker, I don't have to create a rainbow table of all the combinations of those 12 characters with each entry in my dictionary. I could just take all the per-user salts present in the table and just use those to create my rainbow table. For big tables this could take a long time, but if i could cut the list down to users of interest (admins, mods) i could user much bigger dictionary lists to create the rainbow tables. Raising my percentage of hits...</p>
<p>If this is true then it seems that salting really doesn't do all that much to help. It only marginally slows down an attacker.</p>
<p>I know ideally you would want to force complex passwords and salt them with unique and random strings, but forcing complex passwords can annoy users (i know it annoys me) so a lot of sites don't do it. It seems sites are doing their users a disservice with this, and that forcing complex passwords is a lot more important that a good salting method.</p>
<p>I guess this isn't so much a question, but a request for others knowledge on the situation.</p>
http://stackoverflow.com/questions/157998/whats-the-difference-between-sha-and-md5-in-php6What's the difference between SHA and MD5 (in PHP)?Toytown Mafia2008-10-01T14:48:45Z2009-12-14T21:42:22Z
<p>When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?</p>
http://stackoverflow.com/questions/1890310/how-do-i-change-my-password-in-multiple-oracle-databases3How do I change my password in multiple Oracle databases?Jack2009-12-11T19:24:18Z2009-12-14T16:33:49Z
<p>Is there a tool that allows me to change my password in multiple Oracle databases?</p>
<p>It expires every month and I would like to change them all simultaneously.</p>
http://stackoverflow.com/questions/1899724/how-do-i-reset-password-retry-count-for-a-user-in-the-gpu-using-c0How do I reset password retry count for a user in the gpu using C#Haim Bender2009-12-14T08:47:45Z2009-12-14T09:00:58Z
<p>Hi,</p>
<p>I'm using this piece of code :</p>
<pre><code>// create a "principal context" - e.g. your domain (could be machine, too)
PrincipalContext pc = new PrincipalContext(ContextType.Domain, "YOURDOMAIN");
// validate the credentials
bool isValid = pc.ValidateCredentials("myuser", "mypassword")
</code></pre>
<p>to check for user passwords in the GPU. But I heard that it increment there password retry count and I would not like that to happen. How can I reset there retry password count?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1201685/how-would-you-add-salt-to-your-existing-password-hashes3How would you add salt to your existing password hashes?Seu2009-07-29T17:01:49Z2009-12-11T21:12:16Z
<p>I have a database of hashed passwords that had no salt added before they were hashed. I want to add salt to new passwords. Obviously I can't re-hash the existing ones.</p>
<p>How would you migrate to a new hashing system?</p>
http://stackoverflow.com/questions/1888220/which-hash-function-is-currently-a-good-choice-for-passwords2Which hash function is currently a good choice for passwords?c0d3x2009-12-11T13:54:53Z2009-12-11T14:02:41Z
<p>Hi, </p>
<p>Some hash functions are today not as safe as they were some years ago. Which hash function would currently be a good choice for hashing passwords? </p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/624425/phonetically-memorable-password-generation-algorithms20Phonetically Memorable Password Generation AlgorithmsGeorge Stocker2009-03-08T22:19:07Z2009-12-10T02:04:35Z
<h3>Background</h3>
<p>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 numbers that either sound alike, or have some other relation that makes them easy to remember. For instance, 5-15-25, 7-17-2, 6-24-5. These examples <em>seem</em> easy to remember. </p>
<h3>Question</h3>
<p>How would I implement something similar for passwords? Yes, they ought to be hard to crack, but they also should be easy for the end user to remember. Combination Locks do that with a mix of numbers that have similar sounds, and with numbers that have similar properties (7-17-23: All Prime, 17 rolls right off the tongue after 7, and 23 is another prime, and is (out of that set), the 'hard' one to remember).</p>
<h3>Criteria</h3>
<ul>
<li>The Password should be easy to remember. <code>Dog!Wolf</code> is easy to remember, but once an attacker knows that your website gives out that combination, it makes it infinitely easier to check.</li>
<li>The words or letters should mostly follow the same sounds (for the most part).</li>
<li>At least 8 letters</li>
<li>Not use <code>!@#$%^&*();'{}_+<>?,./</code> These punctuation marks, while appropriate for 'hard' passwords, do not have an 'easy to remember' sound. </li>
</ul>
<h3>Resources</h3>
<p>This question is language-agnostic, but if there's a specific implementation for C#, I'd be glad to hear of it.</p>
<h3>Update</h3>
<p>A few users have said that 'this is bad password security'. <strong>Don't</strong> assume that this is for a website. This could just be for me to make an application for myself that generates passwords according to these rules. Here's an example. </p>
<blockquote>
<p>The letters
<strong>A</strong>-<strong>C</strong>-<strong>C</strong>-<strong>L</strong>-<strong>I</strong>-<strong>M</strong>-<strong>O</strong>-<strong>P</strong> 'flow', and they happen to be two
regular words put together
(<strong>Acclimate</strong> and <strong>Mop</strong>). Further,
when a user <em>says</em> these letters, or
says them as a word, it's an actual
word for them. Easy to remember, but
hard to crack (dictionary attack,
obviously).</p>
</blockquote>
<p>This question has a two-part goal:</p>
<ol>
<li>Construct Passwords from letters that sound similar (using alliteration) or</li>
<li>Construct Passwords that mesh common words similarly to produce a third set of letters that is not in a dictionary.</li>
</ol>
http://stackoverflow.com/questions/833835/active-directory2Active DirectoryLoganathan2009-05-07T10:13:37Z2009-12-09T11:55:32Z
<p>How can i get the password for a user from Active Directory</p>
http://stackoverflow.com/questions/75057/what-is-the-best-way-to-check-the-strength-of-a-password13What is the best way to check the strength of a password?Ed L2008-09-16T17:53:22Z2009-12-09T09:00:01Z
<p>See also <a href="http://stackoverflow.com/questions/392928/how-do-you-compute-password-complexity">How do you compute password complexity?</a></p>
<p>What is the best way of ensuring that a user supplied password is a strong password in a registration or change password form?</p>
<p>EDIT: one idea I had (in python)</p>
<pre><code>def validate_password(passwd):
conditions_met = 0
conditions_total = 3
if len(passwd) >= 6:
if passwd.lower() != passwd: conditions_met += 1
if len([x for x in passwd if x.isdigit()]) > 0: conditions_met += 1
if len([x for x in passwd if not x.isalnum()]) > 0: conditions_met += 1
result = False
print conditions_met
if conditions_met >= 2: result = True
return result
</code></pre>
http://stackoverflow.com/questions/1870000/has-anyone-used-buzz-andersens-simple-iphone-keychain-code0Has anyone used Buzz Andersen's Simple iPhone Keychain code?Apophenia Overload2009-12-08T21:34:53Z2009-12-08T22:08:13Z
<p><a href="http://log.scifihifi.com/post/55837387/simple-iphone-keychain-code" rel="nofollow">You can find it here.</a></p>
<p>I'm trying to understand his sample code in order to write a simple program with that stores passwords into the keychain and retrieves them for login. Has anyone done this before? It would be most appreciated if I can see any examples you may have.</p>
http://stackoverflow.com/questions/1853864/reusable-save-credentials-dialog-like-ies-or-vistas-in-net-or-win321reusable "save credentials" dialog (like IE's or Vista's) in .NET or Win32 Justin Grant2009-12-05T23:35:05Z2009-12-05T23:58:46Z
<p>Lately I've been working in an office with a wireless network which uses an annoying authentication scheme: every few hours, you need to open up a browser and type a username/password into an authentication web page, or you lose network access. (When the time expires, your next browser request will redirect to the auth page, and if your creds pass muster, then you'll be redirected back to the page you were trying to get to originally).</p>
<p>This kind of annoyance may be OK for an airport or coffee shop wireless, but in an office it's infuriating-- especially if you're working with network services (e.g. SVN, email) which suddenly stop working every few hours unless you bring up a browser. </p>
<p>So I have written a tiny C# console app which will log in for me by sending an HTTP request to the login form with my credentials. </p>
<p>This is obviously insecure-- my password is sitting inside my source code for all to see. I'd prefer to be able to save my credentials using the same mechanism that IE, for example, uses to save and re-fill passwords in web forms. </p>
<p>Ideally, I'd like a re-usable component for entering, saving, and retrieving credentials(including the UI with an optional "save creds" checkbox) so that my app can simply do something like this (in pseudocode):</p>
<pre><code>// retrieve any saved credentials from some secure place
Credentials creds = GetCreds(some parameters go here);
// if none stored, then show the user an "enter and optionally save credentials" dialog
if (creds == null)
creds = GetCredsDialog(some parameters go here);
// POST to the authentication page
if (creds != null)
{
string authUrl = "https://somehost/login/";
string postDataPattern = "post data pattern here";
// use SecureString here instead?
string postData = string.Format (postDataPattern, HttpUtility.HtmlEncode(creds.Username), HttpUtility.HtmlEncode(creds.Password));
WebClient wc = new WebClient();
string html = wc.UploadString (authUrl, "POST", postData);
// TODO: if html indicates login failure, clear stored credentials
// and ask for new creds. then retry.
}
</code></pre>
<p>Essentially I want to shift the burden of securely storing creds from my app to Windows, under the assumption that the Windows guys will be better at this than I will be. :-)</p>
<p>I'm not looking for iron-clad security here, just something comparable to what IE is using to secure my other stored passwords for other websites. I just don't want to keep plain text passwords in my code!</p>
<p>Of course, the right solution here is to work with the IT department to get them to get a real authentication scheme for Wireless, but in the meantime I'm on my own. </p>
<p>A .NET solution would be preferable, but a Win32 solution would be OK too-- I could simply port the app to C++ without much trouble.</p>
http://stackoverflow.com/questions/1845906/how-to-cache-ssl-client-certificate-password-in-client-application-using-libcurl0How to cache SSL client certificate password in client application using libcurlLong Cheng2009-12-04T09:43:50Z2009-12-04T21:32:44Z
<p>We have a (multi-os) application which communicates with a https server using libcurl and uses SSL client certification. When the client certification is password protected, the application must ask the user to input password. The application sends hundreds of different https request to the server, so we can not ask the user to input password each time a new connection is going to be created. Now we simply prompt the user to input password once when the application starts then set the password to curllib through "CURLOPT_KEYPASSWD" option. But I'm worrying about malicious user could easily hack into the running process and read the client certification password. Is there anyway I can cache the client certification password and also prevent it from being easily read from memory?</p>
http://stackoverflow.com/questions/208796/best-online-password-manager1Best Online Password Manager?Justin2008-10-16T14:32:14Z2009-12-03T12:20:51Z
<p>I work for a team that's looking for a replacement for our online password management package, which we use to keep track of various ftp accounts and so on. Our current solution is shaky at best (it's PHP-based, the master password is hardcoded into the login checking function, etc). A lot of the passwords are out of date anyway, so we're going to scrap what we've got and start over.</p>
<p>What (preferably open-source) online solutions have you used in the past? Are there other approaches that you'd recommend in place of an online storage system (e.g. local hosting)?</p>
http://stackoverflow.com/questions/1837432/how-to-generate-random-password-with-php0How to generate random password with PHP?unknown (google)2009-12-03T03:24:22Z2009-12-03T08:42:40Z
<p>Or is there a software to auto generate random passwords?</p>
http://stackoverflow.com/questions/1837884/whats-easier-to-encrypt-on-iphone-core-data-or-property-lists0What's easier to encrypt on iPhone: Core Data or Property Lists?Apophenia Overload2009-12-03T05:41:44Z2009-12-03T06:33:27Z
<p>What type of persistent data storage would be easier to encrypt on the iPhone- core data, or property lists? By "easier" I mean require less time and complicated steps to implement.</p>
http://stackoverflow.com/questions/1797777/should-i-support-unicode-in-passwords9Should I support Unicode in passwords?KL902009-11-25T15:39:36Z2009-12-01T12:16:05Z
<p>I would like to allow my users to use Unicode for their passwords.</p>
<p>However I see a lot of sites don't support that (e.g. Gmail, Hotmail).</p>
<p>So I'm wondering if there's some technical or usability issue that I'm overlooking.</p>
<p>I'm thinking if anything it must be a usability issue since by default .NET accepts Unciode and if Hotmail--er, the new Live mail--is built on that, I don't see why they would restrict it.</p>
<p>Has anyone encountered similar issues?</p>
http://stackoverflow.com/questions/1819023/encrypting-3rd-party-credentials1Encrypting 3rd party credentialsthe_undefined2009-11-30T10:33:08Z2009-11-30T23:04:50Z
<p>I have an application where I need to store 3rd party credentials to services like Amazon S3, FTP, SFTP, etc..</p>
<p>I know that it is possible to access some of those systems without passwords, but that has its own issues. If our customers gave us access to their S3 buckets via ACL we would still need to verify which bucket belongs to which user, same goes for SFTP and ssh key auth.</p>
<p>We will try our best to allow non-password alternatives where possible, but sometimes (FTP) it just won't be possible. Therefor I am looking for advice on how to store this sensitive data in our database (MySql) or elsewhere.</p>
<p>In the past I have read about people using TrueCrypt partitions that automatically unmount, but that would probably require decent intrusion detection. For now I'm interested in simple approaches that lead to reasonable security and can improved upon in the future.</p>
<p>Any advice on the subject would be highly appriciated!</p>
http://stackoverflow.com/questions/1795171/format-of-ibm-keymans-password-stash-file0Format of IBM keyman's password stash file.someguy2009-11-25T07:12:31Z2009-11-25T07:12:31Z
<p>Hi All,</p>
<p>I need to write a script to stash a password to a file. The password should be stored in the same format as IBM's keyman utlity stores the stash password.</p>
<p>Can this even be done?, if so, can someone point me to the format of the stash file.
I have googled for it , so far no luck.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/749631/storing-a-passwords-in-nsstring-without-being-readable-in-memory3Storing a passwords in NSString without being readable in memoryrjstelling2009-04-14T22:44:37Z2009-11-23T23:14:06Z
<p>I need to store passwords in <code>NSString</code> objects; however, I would like some way to obfuscate them, so they cannot be read directly from memory.</p>
<p>This is a Mac OS X (10.5) application, but a solution that also works on iPhone would be much appreciated.</p>
http://stackoverflow.com/questions/1774876/password-hashing-at-client-browser1Password hashing at client browserAndy2009-11-21T07:53:41Z2009-11-21T15:47:38Z
<p>What's the best way to hash the user password at the client browser, before sending it to the web server, so that only the hash goes out, not the plain-text password?</p>
<p><strong>EDIT</strong>: assuming HTTP is used (not HTTPS)</p>
http://stackoverflow.com/questions/1757510/please-confirm-which-user-you-are-changing-the-password-for3"Please confirm which user you are changing the password for"tybro01032009-11-18T17:05:07Z2009-11-18T17:23:46Z
<p>So I just made a change password form for my rails app. It's just like any other very typical password change form.</p>
<p>So after a few times testing it out I started seeing a popup box saying</p>
<p><code>"Please confirm which user you are changing the password for"</code></p>
<p>Now this really freaked me out a bit since I know I did not write any code to do such things and I definitely do not want users to change other users' passwords.</p>
<p>I soon found out it was firefox's password manager. So now I'm calmed down about it, but still, I don't want this to happen to other people using my site.</p>
<p>How does firefox know it's changing a password anyways? Maybe it's the names of my password fields or maybe even my forms action url (/account/change_password)? Is there a way to make it not do this? Has anyone else had experience with this?</p>
http://stackoverflow.com/questions/1754270/xp-accounts-why-does-this-happen-1XP accounts - why does this happen?thepretender2009-11-18T07:47:35Z2009-11-18T07:47:35Z
<p>Hi all,</p>
<p>Quick question regarding my computer accounts. Recently revisted one of my old comps and forgot the admin password :)</p>
<p>When I boot up I get screen showing John Doe account - no one else, no admin account. Couldn't remember this password.</p>
<p>After a bit of stuffing around, I was able to find out that I have 2 admin rated accounts - one called administrator, one called john doe. (I was using a couple of programs - this was one <a href="http://home.eunet.no/pnordahl/ntpasswd/" rel="nofollow">http://home.eunet.no/pnordahl/ntpasswd/</a> )</p>
<p>Before I bothered to reset the password I decided to see if I could somehow access the administrator account (funnily, I didn't know this was there, had a VERY weak password on it, and got that using ophcrack - and is the main admin account!) After realizing this - i'm definetly going to rebuild. But I digress.</p>
<p>Booting up normally again, I just get the JOhn doe account option and nothing else. I played around using ctrl alt del and yep the prompt comes up so I can change account name and password. Bingo, in with the old administrator password.</p>
<p>Now at this stage, I don't really care about the accounts since im rebuilding anyway and can get in as admin to easily copy data I want. But the whole exercise has beefed my curiosity of what that forgotten password was - and why the accounts have become skewed (if you will).</p>
<p>1) why did i not have admin option and had to ctrl alt del to get to change accnts ?
2) using pwdump i'm told admin has password but john doe acct does not. IT definetly did have a password on it (More still - it was definetly not the same as the admin account pw). Of course it doesn't matter because I can change it now anyway, but i would like to understand.
3) say I can get pwdump of the accounts, and the password inside is quite strong, do I have any hope of cracking that with free programs available? Previously, i could only get the nt hash of this pw and as I understand that is quite hard to crack. im not sure but i think does the pwdump give both, LM and NT hash?</p>
<p>Feel free to answer any part of this or not (if its not kosher). In 40 or so mins the hdd will be formatted anyway.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/728164/securely-erasing-password-in-memory-python3Securely Erasing Password in Memory (Python)maxyfc2009-04-08T01:13:20Z2009-11-18T04:32:22Z
<p>How do you store a password entered by the user in memory and erase it securely after it is no longer need?</p>
<p>To elaborate, currently we have the following code:</p>
<pre><code>username = raw_input('User name: ')
password = getpass.getpass()
mail = imaplib.IMAP4(MAIL_HOST)
mail.login(username, password)
</code></pre>
<p>After calling the <code>login</code> method, what do we need to do to fill the area of memory that contains password with garbled characters so that someone cannot recover the password by doing a core dump?</p>
<p>There is a similar question, however it is in Java and the solution uses character arrays:
<a href="http://stackoverflow.com/questions/646224/how-does-one-store-password-hashes-securely-in-memory-when-creating-accounts">http://stackoverflow.com/questions/646224/how-does-one-store-password-hashes-securely-in-memory-when-creating-accounts</a></p>
<p>Can this be done in Python?</p>
http://stackoverflow.com/questions/1750716/does-a-library-exist-to-remove-passwords-from-pdfs-programmatically3Does a library exist to remove passwords from PDFs programmatically?cialowicz2009-11-17T18:09:05Z2009-11-17T19:47:56Z
<p>Does a library exist that will remove "owner" passwords from PDF documents so that the text can then be programmatically extracted from them? Something like <a href="http://www.pdf-technologies.com/pdf-library-password-recovery.aspx" rel="nofollow">PDF Technologies' Password Recovery tool</a>, but callable from the command line or from Python. A GUI interface is not really useful to me, since the number of documents is so large.</p>
<p>Please, no comments on the legality of the process. The PDFs in question are owned, and the text needs to be extracted in order to form keyword clouds for the document set.</p>