Re: Prepared Statements

Поиск
Список
Период
Сортировка
От wsheldah@lexmark.com
Тема Re: Prepared Statements
Дата
Msg-id OFBD7C18F4.2499D62A-ON85256D66.005245AA@lexmark.com
обсуждение исходный текст
Ответ на Prepared Statements  (Julien Le Goff <julien.legoff@laposte.net>)
Ответы Re: Prepared Statements  (Barry Lind <blind@xythos.com>)
Список pgsql-jdbc
I have to disagree; SQL injection can happen just from input parameters, as
described. The only thing left out was the quotes. If you construct the
query as:
String query = "SELECT * from address_book WHERE name = '" + userInput +
"'";

Then the user needs to change his input to: "joe'; delete from
address_book; '"

I don't know about the JDBC driver, but perl's DBI driver would handle the
above IF it were a parameterized query by escaping all quotes in the user's
input. So if instead of constructing it by hand, you had the "WHERE name
= ?" form and the user passed in the above, postgresql would see:

SELECT * from address_book WHERE name = 'joe''; delete from address_book;
''

(I'm assuming postgresql escapes quotes by doubling them, I don't recall
for sure.)
Hopefully the JDBC driver will do this as well. If not, then all user input
needs to be scanned for quotes, semicolons, etc., so they can be properly
escaped to avoid SQL injection attacks. Incidentally, such attacks might be
a second select query instead of deleting records, so as to get info on all
users in the database instead of just themselves for instance. In that case
it would be much less obvious that an attack had occurred.

Wes Sheldahl



Dmitry Tkach <dmitry@openratings.com>@postgresql.org on 07/17/2003 10:47:49
AM

Sent by:    pgsql-jdbc-owner@postgresql.org


To:    Paul Thomas <paul@tmsl.demon.co.uk>
cc:    "pgsql-jdbc @ postgresql . org" <pgsql-jdbc@postgresql.org>
Subject:    Re: [JDBC] Prepared Statements



>
> This is a security hole known as SQL injection.

No, it isn't :-)
The "hole" you are referring to is letting the users type in entire
queries, not just input parameters.
As long as you have control over how your sql is constructed, you not
any less (nor any more) safe with plain Statements than you would be
with PreparedStatements. The do the same exact thing.

Dima

> If you are using a normal Statement then your users can probably
> delete whole tables from the database but with a PreparedStatement you
> would write
>
> String query = "SELECT * from address_book WHERE name = ?"
>
> and the command actually passed over to the database would be
>
> SELECT * from address_book WHERE name = 'joe;delete from address_book'
>
> I'm sure you can see the difference. Maybe PreparedStatements will
> have a performance gain in some future release but at the moment they
> have a vital role to play in database security.
>




---------------------------(end of broadcast)---------------------------
 TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org





В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Dmitry Tkach
Дата:
Сообщение: Re: setFetchSize() [Viruschecked]
Следующее
От: Dmitry Tkach
Дата:
Сообщение: Re: setFetchSize()