vote up 1 vote down star

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.

flag

60% accept rate
I have not yet had an opportunity to vet qpscanner.riaforge.org, or webapper.net/index.cfm/2008/…. 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

5 Answers

vote up 9 vote down

THere's a queryparam scanner that'll find em for you on RIAForge: http://qpscanner.riaforge.org/

link|flag
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
vote up 4 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down
<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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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