Classic ASP SQL Injection Protection - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T13:31:10Zhttp://stackoverflow.com/feeds/question/149848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection5Classic ASP SQL Injection ProtectionDaniel A. White2008-09-29T17:49:01Z2009-07-21T10:01:31Z
<p>What is a strong way to protect against sql injection for a classic asp app?</p>
<p>FYI I am using it with an access DB. (I didnt write the app)</p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/149850#1498500Answer by StingyJack for Classic ASP SQL Injection ProtectionStingyJack2008-09-29T17:49:24Z2008-10-06T13:56:20Z<p>stored procedures.</p>
<p><em>dont</em> use access... That is not a <em>real</em> database and will only cause you trouble. SQL Express editions are free and will help you avoid many of the performance, transactional, locking, and corruption problems inherent with MSAccess</p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/149854#14985410Answer by Cade Roux for Classic ASP SQL Injection ProtectionCade Roux2008-09-29T17:50:34Z2008-10-10T01:03:22Z<p>Stored Procedures and/or prepared statements:</p>
<p><a href="http://stackoverflow.com/questions/1973/what-is-the-best-way-to-avoid-sql-injection-attacks">http://stackoverflow.com/questions/1973/what-is-the-best-way-to-avoid-sql-injection-attacks</a></p>
<p><a href="http://stackoverflow.com/questions/139199/can-i-protect-against-sql-injection-by-escaping-single-quote-and-surrounding-us">http://stackoverflow.com/questions/139199/can-i-protect-against-sql-injection-by-escaping-single-quote-and-surrounding-us</a></p>
<p><a href="http://stackoverflow.com/questions/1284/catching-sql-injection-and-other-malicious-web-requests">http://stackoverflow.com/questions/1284/catching-sql-injection-and-other-malicious-web-requests</a></p>
<p>With Access DB, you can still do it, but if you're already worried about SQL Injection, I think you need to get off Access anyway.</p>
<p>Here's a link to the technique in Access:</p>
<p><a href="http://www.asp101.com/samples/storedqueries.asp" rel="nofollow">http://www.asp101.com/samples/storedqueries.asp</a></p>
<p>Note that what typically protects from injection is not the stored procedure itself, but that fact that it is parameterized and not dynamic. Remember that even SPs which build dynamic code can be vulnerable to injection if they use parameters in certain ways to build the dynamic code. Overall, I prefer SPs because they form an interface layer which the applications get to the database, so the apps aren't even allowed to execute arbitrary code in the first place.</p>
<p>In addition, the execution point of the stored procedure can be vulnerable if you don't use command and parameters, e.g. this is still vulnerable because it's dynamically built and can be an injection target:</p>
<pre><code>Conn.Execute("EXEC usp_ImOnlySafeIfYouCallMeRight '" + param1 + "', '" + param2 + "'") ;
</code></pre>
<p>Remember that your database needs to defend its own perimeter, and if various logins have rights to <code>INSERT/UPDATE/DELETE</code> in tables, any code in those applications (or compromised applications) can be a potential problem. If the logins only have rights to execute stored procedures, this forms a funnel through which you can much more easily ensure correct behavior. (Similar to OO concepts where objects are responsible for their interfaces and don't expose all their inner workings.)</p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/149856#1498562Answer by AlbertEin for Classic ASP SQL Injection ProtectionAlbertEin2008-09-29T17:50:54Z2008-09-29T17:50:54Z<p>Using parametrized querys, you need to create a command object, assign it parameters with a name and a value, if you do so you wouldn't need to worry about anything else (refering to sql injection of course ;))</p>
<p><a href="http://prepared-statement.blogspot.com/2006/02/asp-prepared-statements.html" rel="nofollow">http://prepared-statement.blogspot.com/2006/02/asp-prepared-statements.html</a></p>
<p>And don't trust stored procedures, they can became a attack vector too if you don't use prepared statements.</p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/150323#1503230Answer by Steven A. Lowe for Classic ASP SQL Injection ProtectionSteven A. Lowe2008-09-29T19:44:05Z2008-09-29T19:44:05Z<p>if stored procedures are not an option - and even if they are - <strong>validate all inputs thoroughly</strong></p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/150338#150338-1Answer by benrick for Classic ASP SQL Injection Protectionbenrick2008-09-29T19:49:05Z2008-09-29T19:49:05Z<p>Switching to SQL Express at the very least is a great option. It will make things much more secure. Even though using parameters and Stored Procedures can help greatly. I also recommend that you validate the inputs carefully to be sure they match what you're expecting.</p>
<p>For values like numbers it is fairly easy to extract the number to verify that it is indeed just a number. Escape all special characters for SQL. Doing this will prevent the attempted attack from working. </p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/170901#1709013Answer by AnonJr for Classic ASP SQL Injection ProtectionAnonJr2008-10-04T19:34:23Z2008-10-04T19:34:23Z<p>"A strong way to protect against sql injection for a classic asp app" is to ruthlessly validate all input. Period.</p>
<p>Stored procedures alone and/or a different database system do not necessarily equal good security. </p>
<p>MS recently put out a SQL Injection Inspection tool that looks for unvalidated input that is used in a query. THAT is what you should be looking for.</p>
<p>Here's the link:
<a href="http://support.microsoft.com/kb/954476" rel="nofollow">The Microsoft Source Code Analyzer for SQL Injection tool is available to find SQL injection vulnerabilities in ASP code</a></p>
http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection/1158295#11582950Answer by Macka for Classic ASP SQL Injection ProtectionMacka2009-07-21T10:01:31Z2009-07-21T10:01:31Z<p>The <a href="http://support.microsoft.com/kb/954476" rel="nofollow">Microsoft Source Code Analyzer for SQL Injection tool</a> is available to find SQL injection vulnerabilities in ASP code</p>