I have inherited a large legacy ColdFusion app. There are hundreds of <cfquery>some sql here #variable#</cfquery> statements that need to be parameterized along the lines of: <cfquery> some sql here <cfqueryparam value="#variable#"/> </cfquery>

How can I go about adding parameterization programatically?

I have thought about writing some regular expression or sed/awk'y sort of solution, but it seems like somebody somewhere has tackled such a problem. Bonus points awarded for inferring the sql type automatically.

Thanks.

link|improve this question

48% accept rate
I have not yet had an opportunity to vet qpscanner.riaforge.org, or webapper.net/index.cfm/2008/7/22/ColdFusion-SQL-Injection. But if one of these two can get sufficient upvotes, perhaps I will not have to, and I can just accept that answer. – Nathan Feger Sep 17 '08 at 4:03
feedback

5 Answers

There's a queryparam scanner that will find them for you on RIAForge: http://qpscanner.riaforge.org/

link|improve this answer
Note: Version 0.8 of QueryParam Scanner will add the ability to auto-fix parameters, but currently it just finds them. – Peter Boughton Sep 15 '08 at 22:26
feedback

There is a script referenced here: http://www.webapper.net/index.cfm/2008/7/22/ColdFusion-SQL-Injection that will do the majority of the heavy lifting for you. All you have to do is check the queries and make sure the syntax will parse properly.

There is no excuse for not using CFQueryParam, apart from it being much more secure, it is a performance boost and the best way to handle quoted values in character based column types.

link|improve this answer
This script is now on github for people to grab and contribute to. github.com/mhenke/WebApper-ColdFusion-SQL-Injection – Mike Henke Jul 29 '11 at 15:30
feedback

Keep in mind that you may not be able to solve everything with <cfqueryparam>.

I've seen a number of examples where the order by field name is being passed in the query string, which is a slightly trickier problem to solve as you need to validate that in a more "manual" way.

link|improve this answer
feedback
<cf_inputFilter
            scopes = "FORM,COOKIE,URL"
            chars = "<,>,!,&,|,%,=,(,),',{,}"
            tags="script,embed,applet,object,HTML">

We used this to counteract a recent SQL injection attack. We added it to the Application.cfm file for our site.

link|improve this answer
feedback

I doubt that there is a solution that will fit your needs exactly. The only option I see is to write your own recursive search that builds a report for you or use one of the apps/scripts that people have listed above. Basically, you are going to have to edit each page or approve all of the automated changes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.