active questions tagged application-security - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:49:02Z http://stackoverflow.com/feeds/tag/application-security http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1688626/web-application-security-testing 2 Web application security testing Arun P Johny 2009-11-06T16:18:36Z 2009-11-06T16:29:50Z <p>Hi all,</p> <p>We are developing a web application using Spring framework and Hibernate ORM. As far as application security is concerned we are using acegi to provide authentication and authorization support.</p> <p>Now about user input sanitation, we have tried to take take care about attacks like XSS and sql injections. We have tried to use as much as prepared statements and hibernate criteria for database updates and queries. Inputs are sanitized for javascript also.</p> <p>For testing these we have tried to use tools like <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>, <a href="http://www.bayden.com/TamperIE/" rel="nofollow">Tamper IE</a>and <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler2</a> etc.</p> <p>We have also used tools like <a href="http://www.watchmouse.com/en/" rel="nofollow">Watch Mouse</a> to do vulnerability tests.</p> <p>What are the other tools available for web application security and what are the things to be considered before starting a web applications security testing.</p> <p>Thanks you</p> http://stackoverflow.com/questions/451939/using-secure-string-and-keeping-it-secure 1 Using Secure String and Keeping it Secure Mitchel Sellers 2009-01-16T20:47:53Z 2009-01-17T03:33:38Z <p>So the .NET framework provides the <a href="http://msdn.microsoft.com/en-us/library/system.security.securestring.aspx" rel="nofollow">SecureString</a> class for storing strings in a secure fashion. But to read the information and work with it you have to return it to a standard string. See <a href="http://dotnetweblog.wordpress.com/2008/07/11/securestring-storing-sensitive-data/" rel="nofollow">this implementation example</a>.</p> <p>As you can see from the example using the pointer we return an unencrypted string. How to do we now manage that "insecure" instance of the string? What is the most secure way to work with the value once it has been set?</p> <p><strong>Edit</strong></p> <p>The purpose of this question was to discuss methods to REDUCE the surface area of potential attack when using SecureStrings and then working with the values. Not the "why" as to the "duplicate" link.</p> http://stackoverflow.com/questions/451167/storing-username-password-during-processing 3 Storing Username/Password During Processing Mitchel Sellers 2009-01-16T16:58:19Z 2009-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>