reg expression in sql insertion attack
one of my client sites has be under attack for the last several months and seems like i have pretty much stopped it (i hope).
what i am trying to do now is find out their exact string, ip, time, etc.
i am searching for strings like update, datasource, select etc.
example:
<cfif (ListContainsNoCase(myfield, "select"))
OR (ListContainsNoCase(myfield, "update"))...
the problem is when i come across a word like selection, it sets off trigger.
i need a reg expression where select stands alone or with special characters on either side but passes if part of a word such as "reselet" or "selection"
tnx in advance
