Thanx to some good ole fashioned hackers... They are trying to insert some trash code.
20-Feb-21'[0] is not a valid date/time format 20-Feb-21'[A=0] is not a valid date/time format
By slipping in bad code into my date time or wherever.
So I am controlling some things this way.
<cfif #cgi.query_string# contains '{0}'>
<cfabort>
</cfif>
But is there a way I can just validate the string and if bad - do the same thing? It doesn't happen often, but I just happen to be looking at the log files and saw this garbage.
I am also killing any known bots if I can sniff them...
<cfif #cgi.HTTP_USER_AGENT# contains 'bot'>
<cfabort>
</cfif>
Any other suggestions folks. Thx.