Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^5: DBI parameterized database query with comma seperated list

by Pope-O-Matik (Pilgrim)
on Dec 21, 2015 at 11:28 UTC ( [id://1150852]=note: print w/replies, xml ) Need Help??


in reply to Re^4: DBI parameterized database query with comma seperated list
in thread DBI parameterized database query with comma seperated list

There are safe and robust ways to do dynamic SQL;

That's what everyone thinks. And, even it it were true, it only stays true until another feature is added (to the code or the RDBMS.) If you're trying to prove what can and cannot be done, you better be sure you have checked every aspect. However, with properly parameterized SQL, the placeholders are strictly typed as data and cannot be used for anything other than data. Hence, the statement is guaranteed to be safe.

This approach enhances security immensely. As a general rule, each layer should handle its own security.

  • Comment on Re^5: DBI parameterized database query with comma seperated list

Replies are listed 'Best First'.
Re^6: DBI parameterized database query with comma seperated list
by kennethk (Abbot) on Dec 21, 2015 at 23:23 UTC
    Please review the possible outputs listed in Re^2: DBI parameterized database query with comma seperated list and, noting all these statement sgenerate SQL to be passed to $db->prepare, illustrate a risk factor that is present because of how I've done it.
    my $db = DBI->connect(...); my @list = CGI->param('arguments'); my $sql = do { my @holders = ('?') x @list; local $" = ','; <<EOSQL; SELECT something FROM atable WHERE data IN (@holders) EOSQL }; my $query = $db->prepare($sql); $query->execute(@list);
    Note I've pulled a whole list of arguments straight from the web, and passed them to the interface unscrubbed.

    #11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

      Please review the possible outputs listed

      Actually, on second look, that's not bad. You're generating placeholders and then passing the values. For an IN() list (as opposed to one that dynamically specifies columns) that ought to work from a security standpoint.

      That being said, the second issue is query caching, which cannot be done when the statement changes at all. In that case, letting the RDBMS do it, may have a (light) performance benefit if the query is executed more than once.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1150852]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-19 03:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found