Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T17:37:07Z http://stackoverflow.com/feeds/question/196177 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/196177/is-linq-to-sql-insertonsubmit-subject-to-sql-injection-attack 0 Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack? Guy http://stackoverflow.com/users/1463 2008-10-12T21:56:05Z 2008-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#196195 4 Answer by liggett78 for Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack? liggett78 http://stackoverflow.com/users/19762 2008-10-12T22:04:12Z 2008-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#196237 1 Answer by Will for Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack? Will http://stackoverflow.com/users/1228 2008-10-12T22:53:40Z 2008-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#196304 3 Answer by Slace for Is LINQ to SQL InsertOnSubmit() subject to SQL Injection Attack? Slace http://stackoverflow.com/users/11388 2008-10-12T23:39:55Z 2008-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>