|
I am not sure if this is database specific, but to avoid SQL Injection attacks, what should be going on in all queries (but it is developer's choice today) is that you use parameters in the query.
Either parameterized queries or stored procedures. We mostly use SQL server so I am not sure how other DBMS handle this, but in SQL server when you use parameters, the "special" characters are automatically escaped properly.
If you are using a concat string, then you could be vulnerable to this attack. Microsoft has been talking about it a lot in their security talks recently.
Something like the following (using C#) is better.
*******************************************
System.Data.SqlClient.SqlCommand test1;
test1 = new System.Data.SqlClient.SqlCommand("Select name from table where [EMAIL PROTECTED]"); test1.CommandType = System.Data.CommandType.Text; System.Data.SqlClient.SqlParameter para1 = new System.Data.SqlClient.SqlParameter("@tempID", System.Data.SqlDbType.VarChar, 50); test1.Parameters.Add(para1); *******************************************
But that is what I recomend if the system supports it. And if not, Scrub the data REALLY well.. ;-)
Richard Norman
Web & Application Developer
Refs:
>>> [EMAIL PROTECTED] 4/7/2005 6:22:12 PM >>> Message: 1
From: James Grant <[EMAIL PROTECTED]> Organization: Lightbox Technologies Inc To: [email protected] Date: Thu, 7 Apr 2005 12:06:36 -0400 Subject: [Mono-list] magic quotes (like PHP) Hi there, I'm running into an issue with an application that has been ported over from windows to linux/mono. On windows, you could enter apostrophe's in input boxes which are then stored in the database without any problems, but on mono it seems that the apostrophe's all need to be manually escaped on every query. I know PHP has an option for "magic quotes" http://ca.php.net/manual/en/ref.info.php#ini.magic-quotes-runtime and was wondering if mono had a similar configuration option? Thanks, James -- James Grant Lightbox Technologies Inc. http://www.lightbox.org 613-294-3670 -------------------------------------------------------------- |
- [Mono-list] Re: magic quotes (like PHP) (or prevent SQL Inj... Richard Norman
