Re: vulnerability of COPY command - Mailing list pgsql-general

From Tom Lane
Subject Re: vulnerability of COPY command
Date
Msg-id 5321.1275228866@sss.pgh.pa.us
Whole thread Raw
In response to Re: vulnerability of COPY command  (Pavel Stehule <pavel.stehule@gmail.com>)
Responses Re: vulnerability of COPY command
List pgsql-general
Pavel Stehule <pavel.stehule@gmail.com> writes:
> 2010/5/30 Dennis Gearon <gearond@sbcglobal.net>:
>> If I build a text based, COPY file for bulk purposes, to be input via the command line, is Postgres vulnerable to
SQLinjection from that? 

> SQL database cannot be injected via NON SQL statemenst like COPY.

Well, that depends.  If you construct a script file like

    COPY mytable FROM STDIN;
    ... data rows here ...
    \.

then obviously somebody could inject SQL if they could get a line
beginning with \. into the data rows.  However, if you put the data
rows in a *separate file* this is not possible.

ISTM though that this discussion is largely missing the point.
If you want to build COPY input from raw data, you have to be
prepared to do suitable quoting/escaping --- the rules are a bit
different from plain SQL quoting, but the concept is the same.
And if you do do that, you're immune from SQL injection in any case,
as is also true of plain old INSERTs.  SQL injection is only a problem
for applications that fail to do quoting/escaping at all, or do it
incorrectly, and COPY is really not any safer if you blow that than
regular SQL is.

            regards, tom lane

pgsql-general by date:

Previous
From: "Abraham, Danny"
Date:
Subject: How do I elimitae ANY loggin to Windows Eventlog? 8.2.4.
Next
From: Ashesh Vashi
Date:
Subject: Re: Installing version 8.4