Classic ASP SQL Injection Protection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T13:31:10Z http://stackoverflow.com/feeds/question/149848 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/149848/classic-asp-sql-injection-protection 5 Classic ASP SQL Injection Protection Daniel A. White 2008-09-29T17:49:01Z 2009-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#149850 0 Answer by StingyJack for Classic ASP SQL Injection Protection StingyJack 2008-09-29T17:49:24Z 2008-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#149854 10 Answer by Cade Roux for Classic ASP SQL Injection Protection Cade Roux 2008-09-29T17:50:34Z 2008-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#149856 2 Answer by AlbertEin for Classic ASP SQL Injection Protection AlbertEin 2008-09-29T17:50:54Z 2008-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#150323 0 Answer by Steven A. Lowe for Classic ASP SQL Injection Protection Steven A. Lowe 2008-09-29T19:44:05Z 2008-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 -1 Answer by benrick for Classic ASP SQL Injection Protection benrick 2008-09-29T19:49:05Z 2008-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#170901 3 Answer by AnonJr for Classic ASP SQL Injection Protection AnonJr 2008-10-04T19:34:23Z 2008-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#1158295 0 Answer by Macka for Classic ASP SQL Injection Protection Macka 2009-07-21T10:01:31Z 2009-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>