|
|
@@ -7,8 +7,39 @@ Master: [ attack via ORDER expessions:
|
|
|
+ `Zend\Db\Select`'s `order()` method allwed passing function calls, but
|
|
|
+ did not provide checks to prevent SQLi vectors. As an example:
|
|
|
+
|
|
|
+ ```php
|
|
|
+ $select = $db->select()->order('MD5(1); select...');
|
|
|
+ ```
|
|
|
+
|
|
|
+ could be entered.
|
|
|
+
|
|
|
+ If you use `Zend\Db\Select` with ORDER clauses, we strongly urge that you
|
|
|
+ upgrade immediately.
|
|
|
+
|
|
|
+IMPORTANT FIXES FOR 1.12.7
|
|
|
+--------------------------
|
|
|
+
|
|
|
+- [#331](https://github.com/zendframework/zf1/pull/331) and
|
|
|
+ [#376](https://github.com/zendframework/zf1/pull/376) provide support
|
|
|
+ for PHPUnit 4 and 4.1, respectively, both within the Zend Framework test suite
|
|
|
+ and inside the `Zend_Test_PHPUnit` component.
|
|
|
+- [#333](https://github.com/zendframework/zf1/pull/333) backports recursive
|
|
|
+ page removal within `Zend_Navigation` from Zend Framework 2.
|
|
|
+- [#343](https://github.com/zendframework/zf1/pull/343) updates the `Hostname`
|
|
|
+ validator to support the new IANA top level domains.
|
|
|
+- Forward-compatibility changes were made to ensure Zend Framework 1 will run on
|
|
|
+ the upcoming PHP 5.6.
|
|
|
+
|
|
|
|
|
|
IMPORTANT FIXES FOR 1.12.6
|
|
|
--------------------------
|