This repository has been archived by the owner on May 16, 2018. It is now read-only.
Zend Framework 1.12.17
weierophinney
released this
23 Nov 20:29
·
52 commits
to master
since this release
- 638: Fixes null byte tests in
Zend_Db_Adapter_Pdo
- 632: Updates the TLD list for
Zend_Validate_Hostname
to version 2015102801
SECURITY UPDATES
- ZF2015-09:
Zend_Captcha_Word
generates a "word" for a CAPTCHA challenge by selecting a sequence of random letters from a character set. Prior to this version, the selection was performed using PHP's internalarray_rand()
function. This function does not generate sufficient entropy due to its usage ofrand()
instead of more cryptographically secure methods such asopenssl_pseudo_random_bytes()
. This could potentially lead to information disclosure should an attacker be able to brute force the random number generation. This release updatesZend_Crypt_Math
to provide cryptographically secure RNG, and updatesZend_Captcha_Word
to use these new facilities.