-
Notifications
You must be signed in to change notification settings - Fork 83
Description
I found a bunch of false positives when running CFQUERYPARAM_REQ, all on MS SQL Server. I know on MySQL apparently one can cfqueryparam in the SELECT statement for instance, but MS SQL Server doesn't allow that.
Is there any chance a change/improvement to the SQL parsing process could weed out some or all of those kinds of reportings?
-
SELECT TOP #arguments.numberOfRecords# ...
-
SELECT something FROM #application.config.LinkedServerName#.somethingelse.dbo.Comment C WITH (NOLOCK)...
-
<cfqueryparam value="Data copied from #variables.siteDetailList[arguments.siteID]["name"]# - #dateFormat(now(),"DD/MM/YYYY")#" cfsqltype="varchar">
-
OPEN SYMMETRIC KEY #config.symmetrickey#
DECRYPTION BY CERTIFICATE #config.dbCertificate#
...
CLOSE SYMMETRIC KEY #config.symmetricKey# -
SELECT '#arguments.additionalValue#' AS aID, '#arguments.additionalOption#' AS trans ...