CFLib.org – Common Function Library Project

IsSQLInject(input)

Last updated July 01, 2002

author

Will Vautrain

Version: 1 | Requires: CF5 | Library: DatabaseLib

Description:
This security-related function is intended to test for strings that users intentionally or otherwise may pass in form fields that may cause SQL injection to occur. SQL injection is an event in which a malicious or unknowing user inserts arbitrary SQL statements into queries without the knowledge of the programmer. This UDF mainly relates to those using SQLServer, I am not sure if the test I use protects against the same vulnerabilities on other database platforms.

Return Values:
Returns a boolean.

Example:

<cfset sqlString1 = "Chicken soup with rice">
<cfset sqlString2 = "Chicken soup with' drop table soups--">

<cfoutput>
sqlString1 = #sqlString1# IsSQLInject? #IsSQLInject(sqlString1)#<br>
sqlString2 = #sqlString2# IsSQLInject? #IsSQLInject(sqlString2)#<br>
</cfoutput>

Parameters:

Name Description Required
input String to check. Yes

Full UDF Source:

/**
 * Tests a string, one-dimensional array, or simple struct for possible SQL injection.
 * 
 * @param input      String to check. (Required)
 * @return Returns a boolean. 
 * @author Will Vautrain (vautrain@yahoo.com) 
 * @version 1, July 1, 2002 
 */
function IsSQLInject(input) {
    /*
    * The SQL-injection strings were used at the suggestion of Chris Anley [chris@ngssoftware.com]
    * in his paper "Advanced SQL Injection In SQL Server Applications" available for downloat at
    * http://www.ngssoftware.com/
    */
    var listSQLInject = "select,insert,update,delete,drop,--,'";
    var arraySQLInject = ListToArray(listSQLInject);
    var i = 1;
    
    for(i=1; i lte arrayLen(arraySQLInject); i=i+1) {
        if(findNoCase(arraySQLInject[i], input)) return true;
    }
    
    return false;
}

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson