Are Parameters really enough to prevent Sql injections? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T02:10:15Zhttp://stackoverflow.com/feeds/question/306668http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections31Are Parameters really enough to prevent Sql injections?Rune Grimstad2008-11-20T20:06:43Z2009-09-18T17:40:01Z
<p>I've been preaching both to my colleagues and here on SO about the goodness of using parameters in SQL queries, especially in .NET applications. I've even gone so far as to promise them as giving immunity against SQL injection attacks.</p>
<p>But I'm starting to wonder if this really is true. Are there any known SQL injection attacks that will be successfull against a parameterized query? Can you for example send a string that causes a buffer overflow on the server?</p>
<p>There are of course other considerations to make to ensure that a web application is safe (like sanitizing user input and all that stuff) but now I am thinking of SQL injections. I'm especially interested in attacks against MsSQL 2005 and 2008 since they are my primary databases, but all databases are interesting. </p>
<p>Edit: To clarify what I mean by parameters and parameterized queries. By using parameters I mean using "variables" instead of building the sql query in a string.<br />
So instead of doing this: </p>
<pre><code>SELECT * FROM Table WHERE Name = 'a name'
</code></pre>
<p>We do this:</p>
<pre><code>SELECT * FROM Table WHERE Name = @Name
</code></pre>
<p>and then set the value of the @Name parameter on the query / command object.</p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306675#30667525Answer by Adam Bellaire for Are Parameters really enough to prevent Sql injections?Adam Bellaire2008-11-20T20:09:16Z2009-09-10T13:49:23Z<p><strong>Placeholders</strong> are enough to prevent injections. You might still be open to buffer overflows, but that is a completely different flavor of attack from an SQL injection (the attack vector would not be SQL syntax but binary). Since the parameters passed will all be escaped properly, there isn't any way for an attacker to pass data that will be treated like "live" SQL. </p>
<p>You can't use functions inside placeholders, and you can't use placeholders as column or table names, because they are escaped and quoted as string literals.</p>
<p>However, if you use <strong>parameters</strong> as part of a <strong>string concatenation</strong> inside your dynamic query, you are still vulnerable to injection, because your strings will not be escaped but will be literal. Using other types for parameters (such as integer) is safe.</p>
<p>That said, if you're using use input to set the value of something like <code>security_level</code>, then someone could just make themselves administrators in your system and have a free-for-all. But that's just basic input validation, and has nothing to do with SQL injection.</p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306676#3066769Answer by Steven A. Lowe for Are Parameters really enough to prevent Sql injections?Steven A. Lowe2008-11-20T20:09:25Z2008-11-20T20:40:24Z<p>any sql parameter of string type (varchar, nvarchar, etc) that is used to construct a dynamic query is still vulnerable</p>
<p>otherwise the parameter type conversion (e.g. to int, decimal, date, etc.) should eliminate any attempt to inject sql via the parameter</p>
<p>EDIT: an example, where parameter @p1 is intended to be a table name</p>
<pre><code>create procedure dbo.uspBeAfraidBeVeryAfraid ( @p1 varchar(64) )
AS
SET NOCOUNT ON
declare @sql varchar(512)
set @sql = 'select * from ' + @p1
exec(@sql)
GO
</code></pre>
<p>If @p1 is selected from a drop-down list it is a potential sql-injection attack vector; </p>
<p>If @p1 is formulated programmatically w/out the ability of the user to intervene then it is not a potential sql-injection attack vector</p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306682#3066825Answer by Blorgbeard for Are Parameters really enough to prevent Sql injections?Blorgbeard2008-11-20T20:10:14Z2008-11-20T20:10:14Z<p>A buffer overflow is not SQL injection. </p>
<p>Parametrized queries guarantee you are safe against SQL injection. They don't guarantee there aren't possible exploits in the form of bugs in your SQL server, but nothing will guarantee that.</p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306702#3067021Answer by Booji Boy for Are Parameters really enough to prevent Sql injections?Booji Boy2008-11-20T20:15:15Z2008-11-20T20:36:34Z<p>It is possible for a stored proc to be vulnerable to special types of SQL injection via overflow/truncation, see: Injection Enabled by Data Truncation here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms161953.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms161953.aspx</a></p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306737#3067378Answer by mikekidder for Are Parameters really enough to prevent Sql injections?mikekidder2008-11-20T20:22:18Z2008-11-20T20:22:18Z<p>Rune -</p>
<p>Here is a dated article, but still valid:</p>
<p><a href="http://www.dotnetjunkies.com/WebLog/chris.taylor/archive/2004/10/13/28370.aspx" rel="nofollow">SQL Injection - Are parameterized queries safe?</a></p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306758#3067582Answer by HLGEM for Are Parameters really enough to prevent Sql injections?HLGEM2008-11-20T20:28:31Z2008-11-20T20:28:31Z<p>Your data is not safe if you use dynamic sql in any way shape or form because the permissions must be at the table level. Yes you have limited the type and amount of injection attack from that particular query, but not limited the access a user can get if he or she finds a way into the system and you are completely vunerable to internal users accessing what they shouldn't in order to commit fraud or steal personal information to sell. Dynamic SQL of any type is a dangerous practice. If you use non-dynamic stored procs, you can set permissions at the procesdure level and no user can do anything except what is defined by the procs (except system admins of course). </p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306818#3068184Answer by Bill Karwin for Are Parameters really enough to prevent Sql injections?Bill Karwin2008-11-20T20:48:58Z2008-11-20T20:48:58Z<p>No, there is still risk of SQL injection any time you interpolate unvalidated data into an SQL query.</p>
<p>Query parameters help to avoid this risk by separating literal values from the SQL syntax.</p>
<pre><code>'SELECT * FROM mytable WHERE colname = ?'
</code></pre>
<p>That's fine, but there are other purposes of interpolating data into a dynamic SQL query that cannot use query parameters, because it's not an SQL value but instead a table name, column name, expression, or some other syntax.</p>
<pre><code>'SELECT * FROM ' + @tablename + ' WHERE colname IN (' + @comma_list + ')'
' ORDER BY ' + @colname'
</code></pre>
<p>It doesn't matter whether you're using stored procedures or executing dynamic SQL queries directly from application code. The risk is still there.</p>
<p>The remedy in these cases is to employ <strong>FIEO</strong> as needed:</p>
<ul>
<li><p><strong>Filter Input:</strong> validate that the data look like legitimate integers, table names, column names, etc. before you interpolate them.</p></li>
<li><p><strong>Escape Output:</strong> in this case "output" means putting data into a SQL query. We use functions to transform variables used as string literals in an SQL expression, so that quote marks and other special characters inside the string are escaped. We should also use functions to transform variables that would be used as table names, column names, etc. As for other syntax, like writing whole SQL expressions dynamically, that's a more complex problem.</p></li>
</ul>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/306981#3069816Answer by RoadWarrior for Are Parameters really enough to prevent Sql injections?RoadWarrior2008-11-20T21:49:32Z2008-11-21T10:38:30Z<p>There seems to be some confusion in this thread about the definition of a "parameterised query".</p>
<ul>
<li>SQL such as a stored proc that accepts parameters.</li>
<li>SQL that is called using the DBMS Parameters collection.</li>
</ul>
<p>Given the former definition, many of the links show working attacks.</p>
<p>But the "normal" definition is the latter one. Given that definition, I don't know of any SQL injection attack that will work. That doesn't mean that there isn't one, but I have yet to see it.</p>
<p>From the comments, I'm not expressing myself clearly enough, so here's an example that will hopefully be clearer:</p>
<p>This approach <strong>is</strong> open to SQL injection</p>
<pre><code>exec dbo.MyStoredProc 'DodgyText'
</code></pre>
<p>This approach <strong>isn't</strong> open to SQL injection</p>
<pre><code>using (SqlCommand cmd = new SqlCommand("dbo.MyStoredProc", testConnection))
{
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter newParam = new SqlParameter(paramName, SqlDbType.Varchar);
newParam.Value = "DodgyText";
.....
cmd.Parameters.Add(newParam);
.....
cmd.ExecuteNonQuery();
}
</code></pre>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/1162473#11624730Answer by nos for Are Parameters really enough to prevent Sql injections?nos2009-07-22T00:32:49Z2009-07-22T00:32:49Z<p>Just remember that with parameters you can easily store the string, or say username if you don't have any policies, "); drop table users; --"</p>
<p>This in itself won't cause any harm, but you better know where and how that date is used further on in your application (e.g. stored in a cookie, retrieved later on to do other stuff.</p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/1261879#12618791Answer by JoshOiknine for Are Parameters really enough to prevent Sql injections?JoshOiknine2009-08-11T17:37:02Z2009-08-11T17:37:02Z<p>I just had my first experience with a SQL Injection attack. It is a pain in the but to clean up so there is no such thing as too much security if it doesn't interfere with functionality. I believe the attach came through a stored procedure and was wondering if anyone had a out side of the box solution to sanitize data coming into a stored procedure paramater?</p>
http://stackoverflow.com/questions/306668/are-parameters-really-enough-to-prevent-sql-injections/1261900#12619000Answer by AlexKuznetsov for Are Parameters really enough to prevent Sql injections?AlexKuznetsov2009-08-11T17:41:39Z2009-08-11T17:41:39Z<p><a href="http://pratchev.blogspot.com/2009/03/sql-injection.html" rel="nofollow">read the following great post by Plamen Ratchev:</a></p>