vote up 6 vote down star
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.

flag

2  
You may be working in the right place if you have dedicated security code reviews! – Robert Venables Aug 12 at 17:45
I would agree, regular code reviews are sometimes are to come by. – IPX Ares Aug 12 at 17:47
Web or Forms? – LFSR Consulting Aug 12 at 17:52
These reviews would pertain mostly to server side services (no direct interaction with users) and backend DB apps/sprocs. Input in some instances can come from a desktop GUI or web page though. – Jehud Aug 12 at 19:22

2 Answers

vote up 5 vote down check

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-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.