--- layout: post status: publish published: true title: .NETIDS v.0.1.1.0 released wordpress_id: 268 wordpress_url: http://pro.grammatic.org/post-netids-v0110-released-32.aspx date: !binary |- MjAwNy0wNi0yNiAxNjoyODoyMSArMDIwMA== date_gmt: !binary |- MjAwNy0wNi0yNiAxNjoyODoyMSArMDIwMA== categories: - Technology - InfoSec - .NET tags: - information security - .NET - C# - .NETIDS comments: [] ---

Just a quick note to announce the release of .NETIDS v.0.1.1.0 - a small update that adds some valuable features:

Most significantly this means that you can control whether page Output Scanning is performed from a SecurePage derived page. For those who are unaware, SecurePage is the simplest inbuilt way of scanning a page in .NETIDS. Simply inherit your page from SecurePage:

{% highlight csharp %} public partial class _Default : DOTNETIDS.SecurePage { } {% endhighlight %}

and add the method

{% highlight csharp %} public override void IDSEventHandler(DOTNETIDS.Report report, DOTNETIDS.SecurePage SecurePage) {% endhighlight %}

This will ensure that your page is scanned in a secure-by-default fashion and also gives the option to disable each type of scan and add exclusions.

The latest package is available at the dotnetids homepage: http://code.google.com/p/dotnetids/