Here is a free sql injection product from HP. Its pretty cool and seems robust.
http://www.communities.hp.
Main Topics
Browse All TopicsI want to check out my security.
How can I try some remote command injection on my web site which I build with ColdFusion MX7.
Thx
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is a free sql injection product from HP. Its pretty cool and seems robust.
http://www.communities.hp.
Well lets imagine your code on that page
www.domain.com/product.cfm
product.cfm
might look like this
<cfquery name="myQuery" datasource="myDS">
select * from products where productId = #url.id#
<cfquery>
www.domain.com/product.cfm
select * from products where productId = 23
www.domain.com/product.cfm
select * from products where productId = 23; delete * from products
So the extra ccommands are sql statements, they are trying to inject extra SQL commands into your database.
I won't provide details on how to hack a site, however will provide some best practices to help prevent it:
1) When performing inline queries always use <cfqueryparam ...>
2) Stored Procedures are just as good, actually for performance, better.
3) enable "scriptprotect" in the cf administrator or in the cfapplication tag...
4) http://www.coldfusionmuse.
5) http://www.coldfusionmuse.
6) ...search the other articles on this site...
7) http://www.petefreitag.com
Bottom line and the overall pretty much catch all if you're still worried, validate all URL variable values before allowing it to be used in a query...
Many times attacks aren't going to come from SQL injection, it'll be an attack on your server and any vulnerabilities it may have, if your server is secured ie: (firewall, updates, anti-virus, patches, string passwords, secure network, etc...), and your validating your URL values, you'll be doing pretty well. SQL injection attacks do happen though, I've seen it a few times on clients' servers who choose to not follow those first three bullets above.
Also, your error log does not show of any signs of an injection attack....
-tb55
There's some useful information regarding ColdFusion specifics here:
http://www.0x000000.com/?i
Business Accounts
Answer for Membership
by: PluckaPosted on 2008-09-11 at 21:11:05ID: 22457115
normally if you have a webpage such as
?id=23
?id=23;del ete * from tableName
www.domain.com/product.cfm
you would inject by doing something like this
www.domain.com/product.cfm