views:

123

answers:

2

Does anyone have a good checklist to use when doing a security code review? The majority of the focus will be on C# code with some TSql sprocs reviewed as well.

+5  A: 

Microsoft has a .net security code review checklist here: Improving Web Application Security: Threats and Countermeasures : Code Review

The contents list looks like this:

  • Performing Text Searches
  • Cross-Site Scripting (XSS)
  • SQL Injection
  • Buffer Overflows
  • Managed Code
  • Code Access Security
  • Unmanaged Code
  • ASP.NET Pages and Controls
  • Web Services
  • Serviced Components
  • Remoting
  • Data Access Code

which seems like a decent start. 8-)

RichieHindle