Add new PDO mysql connection attr to control multi statements option
| Request #68424 | Add new PDO mysql connection attr to control multi statements option | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2014-11-14 15:02 UTC | Modified: | 2019-09-02 07:29 UTC |
|
||||||||||
| From: | peter dot wolanin at acquia dot com | Assigned: | cmb (profile) | |||||||||||
| Status: | Closed | Package: | PDO MySQL | |||||||||||
| PHP Version: | 5.6.3 | OS: | all | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2014-11-14 15:02 UTC] peter dot wolanin at acquia dot com
Description: ------------ Proposed fix: https://github.com/php/php-src/pull/896 mysqli does not set the CLIENT_MULTI_STATEMENTS flag on connect, so a query with multiple statements fails. For PDO mysql, it hard-codes the CLIENT_MULTI_STATEMENTS flag in the connection, so there is no way to disable it. However, if using native prepares, sending multiple statements fails on the server. This is inconsistent. This PR adds a new MySQL-specific attribute that can be only set at connection time to explicitly enable or disable multi statements. As written, it leaves the default the same as current master (enabled). While this PR is against master, I think this change falls somewhere between a feature and a bugfix and should be back-ported to all supported versions. The motivation for this is the severity of the recent SQL injection vulnerability in Drupal. If we had any way to disable multi statement in PDO (which is used in Drupal 7.x but not 6.x), we would have, and the vulnerability would have been significantly mitigated. see: https://www.drupal.org/SA-CORE-2014-005 Test script: --------------- https://github.com/php/php-src/pull/896 includes added test. Expected result: ---------------- It should be possible to limit PDO MySQL to single statement execution so it behaves like mysqli Actual result: -------------- multi-statement option is hard-coded into the connection logic
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2014-12-30 10:42 UTC] php-bugs at lists dot php dot net
[2019-09-02 07:29 UTC] cmb@php.net
-Status: No Feedback +Status: Closed -Assigned To: +Assigned To: cmb
[2019-09-02 07:29 UTC] cmb@php.net