Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack? - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T17:37:07Zhttp://stackoverflow.com/feeds/question/196177http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196177/is-linq-to-sql-insertonsubmit-subject-to-sql-injection-attack0Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack?Guyhttp://stackoverflow.com/users/14632008-10-12T21:56:05Z2008-10-19T14:46:35Z
<p>I have code like this:</p>
<pre><code>var newMsg = new Msg
{
Var1 = var1,
Var2 = var2
};
using (AppDataContext appDataContext = new AppDataContext(ConnectionString))
{
appDataContext.CClass.InsertOnSubmit(newMsg);
appDataContext.SubmitChanges();
}
</code></pre>
<p>After reading <a href="http://stackoverflow.com/questions/157924/does-linqs-executecommand-provide-protection-from-sql-injection-attacks">this post</a> I believe that the same logic applies.</p>
<p>Does anyone think that this is subject to SQL Injection Attack?</p>
http://stackoverflow.com/questions/196177/is-linq-to-sql-insertonsubmit-subject-to-sql-injection-attack/196195#1961954Answer by liggett78 for Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack?liggett78http://stackoverflow.com/users/197622008-10-12T22:04:12Z2008-10-12T22:04:12Z<p>The second answer in the post you're referencing says it:</p>
<blockquote>
<p>LINQ to SQL uses *execute_sql* with
parameters.</p>
</blockquote>
<p>It does not concatenate property values into a one big INSERT ... VALUES('...', '...')</p>
http://stackoverflow.com/questions/196177/is-linq-to-sql-insertonsubmit-subject-to-sql-injection-attack/196237#1962371Answer by Will for Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack?Willhttp://stackoverflow.com/users/12282008-10-12T22:53:40Z2008-10-12T22:53:40Z<p>No, but you should be validating user data anyhow.</p>
http://stackoverflow.com/questions/196177/is-linq-to-sql-insertonsubmit-subject-to-sql-injection-attack/196304#1963043Answer by Slace for Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack?Slacehttp://stackoverflow.com/users/113882008-10-12T23:39:55Z2008-10-12T23:39:55Z<p>The underlying operation of the DataContext is via the SqlCommand which uses paramatised SQL.</p>
<p>So your insert statement will look like this:</p>
<pre><code>INSERT INTO [MSG] [Var1] = @p1, [Var2] = @p2
</code></pre>