in reply to Web Security
Well, some people do really get clueless sometimes; I was delighted when I first implemented a search box on my site, it wasn't until very recently that I discovered a huge flaw in it. Here's what I've been using as code:
my $node = param('node'); if ($node) { my $ref = chady::db::runSQL("SELECT * FROM nodes WHERE title REGEXP \" +$node\" OR contents REGEXP \"$node\" "); ... ..
This was a case of production code that went published without review... the more scarry is that some people test and review, are aware of what they are doing, and still do it.
|
---|
Replies are listed 'Best First'. | |
---|---|
(tye)Re: Web Security
by tye (Sage) on Jul 12, 2002 at 17:49 UTC | |
by Chady (Priest) on Jul 13, 2002 at 09:54 UTC |