.NET Code Security Review Tool - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:38:42Zhttp://stackoverflow.com/feeds/question/197819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197819/net-code-security-review-tool4.NET Code Security Review ToolMitchel Sellers2008-10-13T14:43:02Z2008-10-17T17:39:04Z
<p>I am looking for a utility that can be used against .NET assemblies to validate code against best practices, and most importantly can review the code for Security, Injection, and Cross Site Scripting vulnerabilities. I know that it isn't an exact science, but I'm looking for anyones experience/recommendations on the best way to a solution that will at least set a baseline standard. I know that nothing beats doing an individual review, but I'm looking at the high level.</p>
<p>I have been doing some research on <a href="http://www.fortify.com/products/detect/in_development.jsp" rel="nofollow">Fortify</a>, and so far it is looking like a good tool, from what I can tell it provides a very detailed response. I know that FXCop is out there as well, but I don't know if it goes in deep enough.</p>
<p><strong>EDIT</strong> One attractive thing I found about Fortify, and that would be nice in a tool is the combination of security review, AND .NET Best practices review. IE fortify checks fo potential un-closed connections, recommends the use of Using statements, etc.</p>
http://stackoverflow.com/questions/197819/net-code-security-review-tool/197838#1978380Answer by Abyss Knight for .NET Code Security Review ToolAbyss Knight2008-10-13T14:50:11Z2008-10-13T14:50:11Z<p>We have licenses for <a href="http://www.ouncelabs.com/" rel="nofollow">Ounce</a> for the development side, and I've heard great things about SpiDynamics for testing applications post development.</p>
http://stackoverflow.com/questions/197819/net-code-security-review-tool/197849#1978491Answer by Mitch Wheat for .NET Code Security Review ToolMitch Wheat2008-10-13T14:54:01Z2008-10-13T14:54:01Z<p><a href="http://msdn.microsoft.com/en-us/library/bb429476(VS.80).aspx" rel="nofollow">FxCop</a> is a static code analysis tool, though not specifically targetting security, it will pick up alot of common errors (be sure to turn off the naming rules you aren't interested in).</p>
<p>Also, I came across the "Performance Code Review Tool – Practices Checker" <a href="http://blogs.msdn.com/alikl/archive/2008/01/21/performance-code-review-tool-practices-checker.aspx" rel="nofollow">here</a>.</p>