Re: Re: query checking

From: "Adam Lang" <aalang(at)rutgersinsurance(dot)com>
To: <pgsql-php(at)postgresql(dot)org>
Subject: Re: Re: query checking
Date: 2001-01-24 14:49:41
Message-ID: 006301c08614$e224bbe0$330a0a0a@6014cwpza006
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-php

Even safer if yuo don't let users type in actual SQL at all.

Have a set of check boxes so they can pick which type of query they
want.(update, delete, select, etc.) Have them fill in fields and have them
fill in tables. Then, in your php code, construct the sql code yourself,
while checking the fields for ilelgal characters like ";"

Adam Lang
Systems Engineer
Rutgers Casualty Insurance Company
http://www.rutgersinsurance.com
----- Original Message -----
From: "Brent R. Matzelle" <bmatzelle(at)yahoo(dot)com>
To: <pgsql-php(at)postgresql(dot)org>
Sent: Tuesday, January 23, 2001 3:37 PM
Subject: [PHP] Re: query checking

> You might also try giving the client user different rights to
> the database. Only allow select, insert, and update but
> disallowing any deletes. That way you won't need to build it
> into your PHP code.
>
> Brent
>
> --- s <stefang(at)bundabergcity(dot)qld(dot)gov(dot)au> wrote:
> > I am writing a site that
> > does select/insert SQL commands with users input.
> >
> > There is a potential hazard if some one tries to execute there
> > own commands in an input box
> > eg. the user types into the input box on a form - [ ";
> > delete *
> > from table; ]
> >
> > I'm after a regular expression (that'd be nice) or an
> > algorithm to
> > tell that only one query is being passed to psql at a time.
> >
> > The query string will be processed if
> > Either - one SELECT command only
> > - one INSERT command only
> > - one UPDATE command only
> > ELSE - dont process query
> >
> > Any input would be much appreciated.
> > thanks,
> > stef
> >
>
>
> =====
> "The instructions said install windows 98 or better, so I installed Linux"
>
> http://www.matzelle.net
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Auctions - Buy the things you want at great prices.
> http://auctions.yahoo.com/

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Rien Broekstra 2001-01-27 11:39:42 strtotime() and postgresql date/time output
Previous Message Brent R. Matzelle 2001-01-23 20:37:50 Re: query checking