It has recently been mentioned to be that our method of inserting data into our SQL database via form submission is subject to SQL injection attacks, and want some advice to harden our security.

Here's the code that inserts form data into the DB:

        <cfquery name="InsRegistrant" datasource="#application.Datasource#" dbtype="odbc">

            INSERT INTO Schedule_Registrations(
                schedule_id,
                first_name,
                last_name,
                phone_number,
                email,
                guest,
                list_type,
                datetime_registered
             )
            VALUES(
                #url.schedule_id#,
                '#FORM.first_name#',
                '#FORM.last_name#',
                '#CleanPhoneNumber#',
                '#FORM.email#',
                 #attendee.guest#,
                 <!--- Values for list types 
                    0 = NEVER USE Will cause many many problems
                    1 = Main List
                    2 = Waiting List --->                    
                 #attendee.list_type#,
                 #createodbcdatetime(now())#
             )                
        </cfquery>

CleanPhoneNumber is set this way:

<cfset CleanPhoneNumber = REReplace(form.phone_number, "[^0-9]", "", "ALL") />

I've been told to use, for instance,

<cfqueryparam cfsqltype="cf_sql_varchar" value="#form.phone_number#" />

but I'm not sure what to replace and where. When I replace the values with such I get an error.

Any direction would be helpful..

link|improve this question

FYI. I don't believe the dbtype is neccessary on your <cfquery it will know that from the datasource. – Dale Fraser Jan 8 at 6:28
feedback

2 Answers

up vote 4 down vote accepted

You should wrap all form and url variables in cfqueryparam

Your query would look like this:

<cfquery name="InsRegistrant" datasource="#application.Datasource#" dbtype="odbc">
    INSERT INTO Schedule_Registrations(
         schedule_id,
         first_name,
         last_name,
         phone_number,
         email,
         guest,
         list_type,
         datetime_registered
     )
     VALUES(
         <cfqueryparam cfsqltype="cf_sql_integer" value="#url.schedule_id#">,
         <cfqueryparam cfsqltype="cf_sql_varchar" value="#FORM.first_name#">,
         <cfqueryparam cfsqltype="cf_sql_varchar" value="#FORM.last_name#">,
         <cfqueryparam cfsqltype="cf_sql_varchar" value="#CleanPhoneNumber#">,
         <cfqueryparam cfsqltype="cf_sql_varchar" value="#FORM.email#">,
         <cfqueryparam cfsqltype="cf_sql_integer" value="#attendee.guest#">,
         <!--- Values for list types 
            0 = NEVER USE Will cause many many problems
            1 = Main List
            2 = Waiting List --->                    
         <cfqueryparam cfsqltype="cf_sql_integer" value="#attendee.list_type#">,
         #createodbcdatetime(now())#
     )                
</cfquery>

I'm not sure I got all the data types correct, see the full documentation of cfqueryparam for all the data types.

link|improve this answer
That's the basic approach I was thinking, but had some of the syntax wrong. Works great, thanks! – Greg Jan 8 at 0:14
Generally ColdFusion's data sources only allow one sql statement per CFQuery, so that also helps with Sql injection attacks. Cfqueryparam definitely tightens things up, but be aware that you are now vulnerable to cross site scripting attacks. Make sure you sanatise any form submissions before displaying them. – Stephen Moretti Jan 8 at 21:15
Just to clarify, the database type and driver are what determine whether you can execute multiple statements in cfquery. MySQL supports multiple statements, but the connector/j driver (used by CF) disables them by default. Whereas the MS SQL driver leaves them enabled by default ie queries are at risk. So it depends. But like others said, the safest route is to code defensively and always use cfqueryparam. – Leigh Jan 9 at 2:41
Thanks for the clarification on that. – Greg Jan 11 at 3:51
feedback

There are several good practices you can do.

For the insert code you have provided one of the things you can do is explicitly check the input of the Form Fields before inserting the data.Check for things like spaces and "'". You also want to ensure that the user does not see your error messages from bad data entered. This is useful to somebody wanting to know your table structure.

Otherwise place the insert in a stored procedure and validate the input parameters before calling the stored procedure for the insert or update.

Here is a good list of things you can do to prevent SQL injection attacks. It is related to asp.net but the concepts still apply no matter what language you are using.

How To: Protect From Injection Attacks in ASP.NET

link|improve this answer
Sorry I did not relize this was specfic to codefusion. Looks like the answer provdied below will be more helpful. Here is a link that explains his suggestion. kb2.adobe.com/cps/300/300b670e.html – SoftwareCarpenter Jan 7 at 23:56
Some good information there nonetheless, thanks. – Greg Jan 8 at 0:21
feedback

Your Answer

 
or
required, but never shown

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