First Release

 Downloads & Files



Source Code Boost Source Code (used in the project but not needed for installation)
source code, 45050K, uploaded Dec 1 2007 - 403 downloads
Documentation Installation video
documentation, 12307K, uploaded Dec 28 2007 - 1566 downloads
Application Installation Package 64-bit (beta 0.8) Please give feedback
application, 3819K, uploaded Jul 4 - 62 downloads
Application Boost1.35.0-unzip on C:\projects\IIS6SQLInjection
application, 64421K, uploaded Aug 21 - 92 downloads
Application Installation Package v. 1.5 32bits - Compatible with Frontpage Extensions
application, 3562K, uploaded Aug 23 - 247 downloads
Application Installation Package v.2.0 32bits BETA-incl. Log and Exclusions
application, 8752K, uploaded Nov 5 - 47 downloads

Release Notes

Project Description

This ISAPI wildcard, which works as a ISAPI filter, sanitizes SQL Injection attacks directly from GET and POST variables.

Important
I have deleted the previous version (1.0) which had about 2,000 downloads. The new version include some features requested by users in the discussion post. Add 2,354 to the number of downloads if you want to know how many people have downloaded the filter so far.

Installation Package v. 2.0 32bits-BETA - It includes an application to change configuration, the possibility of excluding files to be filtered, logging and a better installer including the C++ dependencies. It is compatible with ASP and ASP.NET. It is the preferred download. The only BETA part is the log capability, all the rest is stable.

Installation Package v. 1.5 32bits - Compatible with Frontpage Extensions - is compatible with both classic ASP and ASP.NET.


Introduction

This ISAPI dll prevents SQL Injection attempts by intercepting the HTTP requests and sanitizing both GET and POST variables (or any combination of both) before the request reaches the intended code. This is especially useful for legacy applications not designed to deal with MS SQL Server Injection attempts. Though this application was designed with MS SQL Server in mind, it can be used with no or minimal changes with other database engines.

This ISAPI is only compatible with Internet Information Server (IIS) 6.0 which comes with Windows 2003. Windows XP uses IIS 5 engine which DOES NOT fully support ISAPI Wildcard.

Background

SQL Server Injection is a common technique of application attack targeting the database layer of such application. All applications using string concatenation to create SQL queries instead of parameterized queries are by nature vulnerable, no exceptions. See below a basic example:

C#:
stringSQL = "SELECT * FROM users WHERE userName = \'" + UserId.Te