I have been working with Coldfusion 9 lately (background in PHP primarily) and I am scratching my head trying to figure out how to 'clean/sanitize' input / string that is user submitted.

I want to make it HTMLSAFE, eliminate any javascript, or SQL query injection, the usual. I am hoping I've overlooked some kind of function that already comes with CF9.

Can someone point me in the proper direction?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

This an addition to Kyle's suggestions not an alternative answer, but the comments panel is a bit rubbish for links.

Take a look a the ColdFusion string functions. You've got HTMLCodeFormat, HTMLEditFormat, JSStringFormat and URLEncodedFormat. All of which can help you with working with content posted from a form.

You can also try to use the regex functions to remove HTML tags, but its never a precise science. This ColdFusion based regex/html question should help there a bit.

You can also try to protect yourself from bots and known spammers using something like cfformprotect, which integrates Project Honeypot and Akismet protection amongst other tools into your forms.

link|improve this answer
All fine ideas! – Kyle Humfeld Jan 10 '11 at 21:16
fine answer, I'll have to accept this one, altho Kyle was first, I feel you did add way more to the answer. Thanks, informative :) – Jakub Jan 10 '11 at 21:19
Totally fair, glad I could help at least a bit. =) – Kyle Humfeld Jan 10 '11 at 22:19
It should be noted that orangepips answer is also valid, it just wasn't posted when I started my post. AntiSamy is something that we've also employed for data input sanitisation. – Stephen Moretti Jan 11 '11 at 15:41
feedback

Well, for SQL injection, you want to use CFQUERYPARAM.

As for sanitizing the input for XSS and the like, you can use the ScriptProtect attribute in CFAPPLICATION, though I've heard that doesn't work flawlessly. You could look at Portcullis or similar 3rd-party CFCs for better script protection if you prefer.

link|improve this answer
feedback

You've got several options:

  1. "Global Script Protection" Administrator setting, which applies a regular expression against post and get (i.e. FORM and URL) variables to strip out <script/>, <img/> and several other tags
  2. Use isValid() to validate variables' data types (see my in depth answer on this one).
  3. <cfqueryparam/>, which serves to create SQL bind parameters and validate the datatype passed to it.

That noted, if you are really trying to sanitize HTML, use Java, which ColdFusion can access natively. In particular use the OWASP AntiSamy Project, which takes an HTML fragment and whitelists what values can be part of it. This is the same approach that sites like SO and slashdot.org use to protect submissions and is a more secure approach to accepting markup content.

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.