Storing Username/Password During Processing - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T02:56:37Zhttp://stackoverflow.com/feeds/question/451167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/451167/storing-username-password-during-processing3Storing Username/Password During ProcessingMitchel Sellers2009-01-16T16:58:19Z2009-01-16T20:59:59Z
<p>Working inside the context of an ASP.NET application I am creating a page that will be able to execute database scripts against one of many databases in our environment. To do this we need to prompt the user for a username/password combination, this value can be used for all servers without issue.</p>
<p>The question is where is the most secure location to store this information? We need to store it temporarily as when they are on this specific page they could be executing hundreds of scripts, over multiple postbacks. From what I can tell I have 3 options and I'm not sure what is the best. Below is my take on the options, what is the recommendation of everyone here? What is the most secure, while still being friendly for the user?</p>
<p><strong>Store Information In Viewstate</strong></p>
<p>One of the first ideas we discussed was storing the information after being supplied by the user in the ViewState for the page. This is helpful as the information will only exist for the lifetime of the page, however, we are unsure of the security implications.</p>
<p><strong>Store information in Session</strong></p>
<p>The next idea we had was to store it in session, however, the downside to this is that the information can be made available to other pages inside the application, and the information always lingers in memory on the server.</p>
<p><strong>Store Information in Application</strong></p>
<p>The last idea that we had was to store it in the Application cache, with a user specific key and a sliding 5 minute expiration. This would still be available to other pages, however, it would ensure that the information is cached for a shorter period.</p>
<p><strong>Why?</strong></p>
<p>The final question that is important is "Why are you doing this?". Why don't we just use their Lan id's? Well we cannot use lan id's due to the lack of network support for delegation.</p>
<p>S0 what is the recommended solution? Why? How secure is it, and can we be?</p>
<p><em>Update</em></p>
<p>Great information has been discussed. TO clarify, we are running in an intranet environment, we CANNOT use Impersonation or Delegation due to limitations in the network. </p>
http://stackoverflow.com/questions/451167/storing-username-password-during-processing/451198#4511981Answer by Mehrdad Afshari for Storing Username/Password During ProcessingMehrdad Afshari2009-01-16T17:04:42Z2009-01-16T17:04:42Z<p>The <code>ViewState</code> approach is good but has the problem that you are giving out the username and password to the client. Even if you encrypt it, if some attacker has the encryption key, the situation will not be very good.</p>
<p>Regarding the <code>Session</code> and <code>Application</code> approaches, I don't think <code>Application</code> approach makes sense. Data is user specific, so <code>Session</code> should be the way to go. It'll go away as soon as user's session is closed. By the way, if you chose to store it at the server, use <code>SecureString</code> class.</p>
http://stackoverflow.com/questions/451167/storing-username-password-during-processing/451209#4512093Answer by Tomalak for Storing Username/Password During ProcessingTomalak2009-01-16T17:07:42Z2009-01-16T17:07:42Z<p>In my opinion the natural place for this is the Session.</p>
<p>I'm not sure why you seem to be fearing "other pages inside the application" (you control the appliciation, don't you?), but if you really are, you could use some sort of encryption before you store it.</p>
<p>But if you are going to do <em>that</em>, the data could live in the ViewState as well.</p>
http://stackoverflow.com/questions/451167/storing-username-password-during-processing/451240#4512403Answer by John MacIntyre for Storing Username/Password During ProcessingJohn MacIntyre2009-01-16T17:15:22Z2009-01-16T17:15:22Z<p>I don't like any of these ideas, but <strong>totally hate the viewstate idea</strong>.</p>
<p>I don't know how many databases you are attaching to, but if there is a limited number, I kind of wonder if handling your authentication and authorization in a standard secure manner, then connect to those databases via <strong>integrated security using identity impersonation</strong> with an account that has minimal permissions.</p>
http://stackoverflow.com/questions/451167/storing-username-password-during-processing/451257#4512570Answer by ScottS for Storing Username/Password During ProcessingScottS2009-01-16T17:19:57Z2009-01-16T17:19:57Z<p>Storing in Viewstate increases your exposure because the password will be flying around the internet again and again. It's up to you if encryption is good enough to address this risk.</p>
<p>Using Application or Session both keeps the password in the server. As mentioned above SecureString will keep people from simply reading passwords out of memory. Session will scale to more users, and probably more importantly to multiple servers much easier than Application. Unless you are sure you will never use more than 1 web server I would not use Application, as it will be up to you to synchronize all the servers.</p>
http://stackoverflow.com/questions/451167/storing-username-password-during-processing/451324#4513241Answer by Alejandro Mezcua for Storing Username/Password During ProcessingAlejandro Mezcua2009-01-16T17:40:00Z2009-01-16T17:40:00Z<p>As John MacIntyre wrote you should use integrated security and impersonation for this.</p>
<p>If for some reason you can not use it and you are going to provide your own login page, use by all means SSL to encrypt the traffic between the browser and your server. Using the ViewState approach is also completely insecure if you do not use SSL, there are tools to view the contents very easily. From the methods that you enumerate the best one would be to use the Session state. You can offload saving the session state from your web server memory and save <a href="http://msdn.microsoft.com/en-us/library/ms178201.aspx" rel="nofollow">that data in a database</a> that you can secure the way you want. If you don't like the way these work you could even write your own <a href="http://msdn.microsoft.com/en-us/library/ms178589.aspx" rel="nofollow">session state provider</a> and apply the security you need there.</p>
http://stackoverflow.com/questions/451167/storing-username-password-during-processing/451871#4518710Answer by Jon Ericson for Storing Username/Password During ProcessingJon Ericson2009-01-16T20:29:45Z2009-01-16T20:59:59Z<p>Never store passwords!</p>
<p>Rather store the hash of a password. See: <a href="http://en.wikipedia.org/wiki/Crypt_(Unix)#Library_Function" rel="nofollow">http://en.wikipedia.org/wiki/Crypt_(Unix)#Library_Function</a>.</p>
<p>I'm aware this does not answer the question, but the more programmers who ignore this advice, the easier it will be for criminals to steal data. Don't let your organization become a news story.</p>