vote up 1 vote down star
1

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

flag

50% accept rate

2 Answers

vote up 3 vote down check

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|flag
Thank you, great :) – Thomas Hansen Dec 2 '08 at 4:03
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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