parametrization in VBScript/ASP Classic and ADO - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:27:20Z http://stackoverflow.com/feeds/question/57528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57528/parametrization-in-vbscript-asp-classic-and-ado 1 parametrization in VBScript/ASP Classic and ADO Jason Baker 2008-09-11T20:26:20Z 2008-10-04T16:59:45Z <p>I'm a bit confused here. Microsoft as far as I can tell claims that parametrization is the best way to protect your database from SQL injection attacks. But I find two conflicting sources of information here:</p> <p><a href="http://support.microsoft.com/kb/200190" rel="nofollow">This page</a> says to use the ADO command object. But <a href="http://msdn.microsoft.com/en-us/library/ms679836(VS.85).aspx" rel="nofollow">this page</a> says that the command object isn't safe for scripting. I seem to recall reading somewhere that the command object shouldn't be used in VBScript or JScript because of security vulnerabilities, but I can't seem to find that article.</p> <p>Am I missing something here, or do those two articles seem to contradict each other?</p> http://stackoverflow.com/questions/57528/parametrization-in-vbscript-asp-classic-and-ado/57693#57693 2 Answer by Michael Pryor for parametrization in VBScript/ASP Classic and ADO Michael Pryor 2008-09-11T21:21:19Z 2008-09-11T21:21:19Z <p>I could be wrong here, but I think this just means that someone could use the Command object to do bad things. I.e. it's not to be trusted if someone else is scripting it.</p> <p>See <a href="http://www.avdf.com/mar97/art_interface.html" rel="nofollow">safe for scripting</a> in this article. Every instance that talks about this phrase online, references it as if you are marking an ActiveX control saying "This control does no I/O or only talks back to the server that it came from" but the Command object doesn't do that. It can be used to do a lot of things which could be unsafe.</p> <p>The "safe" they are talking about and the "safe" to prevent from SQL injection are two different things. The article about using the ADO Command object to parametrize your data is spot on. You should do that.</p> http://stackoverflow.com/questions/57528/parametrization-in-vbscript-asp-classic-and-ado/57700#57700 1 Answer by rpetrich for parametrization in VBScript/ASP Classic and ADO rpetrich 2008-09-11T21:25:21Z 2008-09-11T21:25:21Z <p>I think "safe for scripting" means "safe to be run from a webpage we just retrieved from some Nigerian prince". The command object should be safe to run on the server.</p> <p>At work though, back in the day my colleagues didn't trust it so we had an in-house framework that basically did the same thing.</p>