vote up 0 vote down star
1

I have code like this:

var newMsg = new Msg
{
    Var1 = var1,
    Var2 = var2
};

using (AppDataContext appDataContext = new AppDataContext(ConnectionString))
{
    appDataContext.CClass.InsertOnSubmit(newMsg);
    appDataContext.SubmitChanges();
}

After reading this post I believe that the same logic applies.

Does anyone think that this is subject to SQL Injection Attack?

flag

73% accept rate

3 Answers

vote up 3 vote down check

The second answer in the post you're referencing says it:

LINQ to SQL uses *execute_sql* with parameters.

It does not concatenate property values into a one big INSERT ... VALUES('...', '...')

link|flag
I'm not sure that it does... it is just a command that is parameterised. execute_sql is used to do the same from within TSQL. – Marc Gravell Oct 13 '08 at 4:12
User input that is parameterised is safe from injection. Injection attacks only apply when user input is concatenated. – commongenius May 21 at 18:03
vote up 0 vote down

No, but you should be validating user data anyhow.

link|flag
vote up 3 vote down

The underlying operation of the DataContext is via the SqlCommand which uses paramatised SQL.

So your insert statement will look like this:

INSERT INTO [MSG] [Var1] = @p1, [Var2] = @p2
link|flag

Your Answer

Get an OpenID
or

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