summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* PHP-5.6.33php-5.6.33PHP-5.6.33Ferenc Kovacs2018-01-033-8/+6
|
* php 5.6.34 is nextFerenc Kovacs2018-01-033-5/+7
|
* Update NEWSStanislav Malyshev2018-01-011-1/+7
|
* Fixed bug #75571: Potential infinite loop in gdImageCreateFromGifCtxChristoph M. Becker2018-01-013-5/+20
| | | | | | | Due to a signedness confusion in `GetCode_` a corrupt GIF file can trigger an infinite loop. Furthermore we make sure that a GIF without any palette entries is treated as invalid *after* open palette entries have been removed.
* Fix bug #74782: remove file name from output to avoid XSSStanislav Malyshev2018-01-0114-45/+45
|
* Backport and apply upstream patch for CVE-2017-14107Anatol Belski2017-10-271-1/+6
|
* 5.6.33 is nextFerenc Kovacs2017-10-253-5/+7
|
* These tests all assume that IPV6 is available.Rasmus Lerdorf2017-10-255-5/+20
|
* fix the travis build for PHP-5.6 using precise instead of trustyFerenc Kovacs2017-10-251-1/+1
|
* fix the travis build for PHP-5.6 using precise instead of trustyFerenc Kovacs2017-10-251-0/+1
|
* Parametrize the expected value to avoid platform false positivesAnatol Belski2017-10-241-1/+1
|
* [ci skip] update NEWSAnatol Belski2017-10-241-0/+9
|
* Fixed bug #72535 arcfour encryption stream filter crashes phpAnatol Belski2017-10-242-1/+24
|
* Fixed bug #75055 Out-Of-Bounds Read in timelib_meridian()Anatol Belski2017-10-245-716/+2336
|
* Apply upstream patch for CVE-2016-1283Anatol Belski2017-10-242-1/+16
| | | | | | | | Fix bug #75207, see also https://bugzilla.redhat.com/show_bug.cgi?id=1295385 https://vcs.pcre.org/pcre?view=revision&revision=1636 (cherry picked from commit d11fceab151cd0410645f81eb7444af4388470c3)
* add missing NEWS entry for #74087 and also fix the formattingFerenc Kovacs2017-07-061-4/+8
|
* move NEWS entry to the correct place, also bump the versionFerenc Kovacs2017-07-063-7/+11
|
* NEWS for onigurumaRemi Collet2017-07-051-0/+2
|
* Patch from the upstream gitRemi Collet2017-07-051-1/+3
| | | | | | https://github.com/kkos/oniguruma/issues/60 (CVE-2017-9228) Thanks to Mamoru TASAKA <mtasaka@fedoraproject.org>
* Patch from the upstream gitRemi Collet2017-07-051-1/+8
| | | | | | | https://github.com/kkos/oniguruma/issues/59 (CVE-2017-9229) b690371bbf97794b4a1d3f295d4fb9a8b05d402d Modified for onig 5.9.6 Thanks to Mamoru TASAKA <mtasaka@fedoraproject.org>
* Patch from the upstream gitRemi Collet2017-07-051-0/+2
| | | | | | https://github.com/kkos/oniguruma/issues/58 (CVE-2017-9227) Thanks to Mamoru TASAKA <mtasaka@fedoraproject.org>
* Patch from the upstream gitRemi Collet2017-07-051-5/+0
| | | | | | https://github.com/kkos/oniguruma/issues/57 (CVE-2017-9224) Thanks to Mamoru TASAKA <mtasaka@fedoraproject.org>
* Patch from the upstream gitRemi Collet2017-07-051-2/+6
| | | | | | | | https://github.com/kkos/oniguruma/issues/55 (CVE-2017-9226) b4bf968ad52afe14e60a2dc8a95d3555c543353a Modified for onig 5.9.6 f015fbdd95f76438cd86366467bb2b39870dd7c6 Modified for onig 5.9.6 Thanks to Mamoru TASAKA <mtasaka@fedoraproject.org>
* Improve fix for #74145Stanislav Malyshev2017-07-041-5/+10
|
* Fix testsStanislav Malyshev2017-07-042-4/+4
|
* Update NEWSStanislav Malyshev2017-07-041-1/+17
|
* Fix bug #74087Stanislav Malyshev2017-07-041-1/+1
| | | | Ported from https://vcs.pcre.org/pcre/code/trunk/pcre_jit_compile.c?r1=1676&r2=1680&view=patch
* Fixed parsing of strange formats with mixed month/day and time stringsDerick Rethans2017-07-042-6370/+5466
|
* Fix bug #74145 - wddx parsing empty boolean tag leads to SIGSEGVStanislav Malyshev2017-07-043-9/+31
|
* Fixed bug #74111Nikita Popov2017-07-044-517/+501
|
* Fix #74435: Buffer over-read into uninitialized memoryChristoph M. Becker2017-07-043-0/+30
| | | | | The stack allocated color map buffers were not zeroed before usage, and so undefined palette indexes could cause information leakage.
* Fix bug #74603 - use correct buffer sizeStanislav Malyshev2017-07-043-1/+17
|
* Fix bug #74651 - check EVP_SealInit as it can return -1Stanislav Malyshev2017-07-043-3/+47
|
* Update NEWSStanislav Malyshev2017-06-241-0/+4
|
* Fix bug #73807Nikita Popov2017-06-201-3/+9
|
* fix test for 32bits (int -> float)Remi Collet2017-02-011-2/+2
| | | | (cherry picked from commit 0f1ae93bfa2feb3d0fd0b8d3036148df8ef856e2)
* update NEWSFerenc Kovacs2017-01-191-0/+2
|
* Fix #73869: Signed Integer Overflow gd_io.cChristoph M. Becker2017-01-174-0/+23
| | | | | | | | | | | GD2 stores the number of horizontal and vertical chunks as words (i.e. 2 byte unsigned). These values are multiplied and assigned to an int when reading the image, what can cause integer overflows. We have to avoid that, and also make sure that either chunk count is actually greater than zero. If illegal chunk counts are detected, we bail out from reading the image. (cherry picked from commit 5b5d9db3988b829e0b121b74bb3947f01c2796a1)
* Fix #73868: DOS vulnerability in gdImageCreateFromGd2Ctx()Christoph M. Becker2017-01-173-2/+24
| | | | | | | We must not pretend that there are image data if there are none. Instead we fail reading the image file gracefully. (cherry picked from commit cdb648dc4115ce0722f3cc75e6a65115fc0e56ab)
* Add additional serialize tests for fixed bugsNikita Popov2017-01-163-0/+120
| | | | | These have been fixed as a side-effect of the delayed __wakeup patch.
* Fix typoStanislav Malyshev2017-01-161-1/+1
|
* Fix testStanislav Malyshev2017-01-151-6/+6
|
* Update more functions with path checkStanislav Malyshev2017-01-153-3/+3
|
* Fix glob-wrapper.phpt to not fail in WindowsMitch Hagstrand2017-01-101-5/+5
|
* Fix open_basedir check for glob:// opendir wrapperSara Golemon2017-01-092-4/+39
| | | | | | | | php_check_open_basedir() expects a local filesystem path, but we're handing it a `glob://...` URI instead. Move the check to after the path trim so that we're checking a meaningful pathspec.
* add skip when json not loadedRemi Collet2017-01-061-0/+2
|
* 5.6.31 is nextFerenc Kovacs2017-01-063-5/+17
|
* Fix printf modifierNikita Popov2017-01-051-1/+1
|
* Add tests for delayed __wakeup()Nikita Popov2017-01-057-0/+263
|
* Implement delayed __wakeupNikita Popov2017-01-052-535/+622
|