1

Does anyone know of any security libraries for ASP.NET web applications?

I am looking for libraries that provide basic authentication, logging into accounts, protection against SQL injection and cross-site scripting, input validation, encyrption and the like.

I have come across a library called Rhino Security. Does anyone know of any similar libraries?

Edit:

An example of another library is CryptoSharp http://www.9rays.net/Category/63-cryptosharp.aspx

Matthew
  • 4,477
  • 21
  • 70
  • 93
  • Please see this SO answer: http://stackoverflow.com/questions/2954970/best-way-to-handle-integer-overflow-in-c – Steve Stokes Mar 14 '13 at 20:31
  • @Steve Strokes I mentioned the SafeInt library as an example only. I am looking for secure libraries for ASP.NET web applications. The SafeInt library and Strsafe.h library are just there to serve as an example of what I am looking for. – Matthew Mar 14 '13 at 20:32
  • I am looking for secure libraries for ASP.NET web applications that can provide authentication, cryptography, protection against SQL injection, input validation etc. – Matthew Mar 14 '13 at 20:33
  • I know that .NET offers a lot of these features out of the box. I am asking if there are secure libraries which improve upon these features. – Matthew Mar 14 '13 at 20:33
  • 1
    You should update the question to be more related to injection and other web-based security issues since it's a little misleading right now. – Garrett Vlieger Mar 14 '13 at 20:35
  • An example of a security library I am looking for is called Rhino Security. I asked this question to see if anyone knows of any similar libraries. – Matthew Mar 14 '13 at 20:35
  • @Garret Vlieger Thanks. I will do it in a moment :) – Matthew Mar 14 '13 at 20:36

1 Answers1

1

Microsoft Enterprise Library: http://msdn.microsoft.com/en-us/library/ff632023.aspx

Knaģis
  • 20,827
  • 7
  • 66
  • 80