IsSQLInject(input)
Last updated July 1, 2002
Version: 1 | Requires: ColdFusion 5 | 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 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:
<cfscript>
/**
* 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;
}
</cfscript>
Search CFLib.org
Latest Additions
John Bartlett added
browserDetect
5 day(s) ago
Rob Brooks-Bilson added
listCompare
8 day(s) ago
Stephen Withington added
formToNameValueP...
16 day(s) ago
anthony petruzzi added
parseExcel
21 day(s) ago
Pablo Varando added
returnRandomHEXC...
22 day(s) ago
Top Rated
QueryStringChang...
Rated 5.0, 10 time(s)
formToNameValueP...
Rated 5.0, 5 time(s)
HTMLSafe
Rated 5.0, 4 time(s)
viewCSS
Rated 5.0, 4 time(s)
generateRandomKe...
Rated 5.0, 3 time(s)