up vote 1 down vote favorite
1
share [g+] share [fb]

I'm doing this system Stacked and I am creating the search function. And in that process it occurs to me that maybe AR/nHibernate Expression.Like (and siblings) might maybe not be 100% "safe" in that you can create stuff like; "\r\ndrop database xxx;---" and similar things...?

I would expect them to be safe, but I am not sure...

link|improve this question

50% accept rate
feedback

2 Answers

up vote 4 down vote accepted

NHibernate (and by extension ActiveRecord) generate parameterized SQL statements of the form sp_executesql 'select blah from table where column = @p1', '@p1 varchar(10)', @p1 = 'drop database xxx;---' for queries. These types of SQL statements are safe from SQL injection because the contents of the parameters are not executed (unlike they would be if simple concatenation was used).

So yes, both are "safe".

link|improve this answer
Thank you, great :) – Thomas Hansen Dec 2 '08 at 4:03
feedback

If you find a security bug, you should definitely file it. Many rely on such things.

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.