Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Security vulnerabilies checklist

I am working on a consumer facing web application built on .Net/C# MSSQL as the databse

We have been following general good coding practices to prevent bugs and SQL/JS query injections but non of us are experts on security.

What would be a good checklist to find out how really secure is the application we are building.

like image 694
kaivalya Avatar asked Apr 01 '09 01:04

kaivalya


1 Answers

I'm not sure what was meant by a checklist, since it could related to development (to help developers write less bugs), code review (to catch bugs in review) or testing (to ensure that all facets of the vulnerability are tested for).

OWASP does have guides to support all the three needs -

  • OWASP Development Guide
  • OWASP Code Review Guide
  • OWASP Testing Guide

And then to top it off, you could always refer to the OWASP Top 10 list, to establish priorities on the vulnerabilities that you would like to concentrate most of your efforts on.

As Mark mentioned, the OWASP .NET project will be useful.

like image 56
Vineet Reynolds Avatar answered Nov 03 '22 06:11

Vineet Reynolds