Bug 977995 - (CVE-2016-4345) VUL-0: CVE-2016-4345: php: heap overflow in ext/filter/sanitizing_filters.c
(CVE-2016-4345)
VUL-0: CVE-2016-4345: php: heap overflow in ext/filter/sanitizing_filters.c
Status: RESOLVED FIXED
Classification: Novell Products
Product: SUSE Security Incidents
Classification: Novell Products
Component: Incidents
unspecified
Other Other
: P2 - High : Normal
: ---
Assigned To: Petr Gajdos
Security Team bot
https://smash.suse.de/issue/168404/
CVSSv2:RedHat:CVE-2016-4346:4.3:(AV:...
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2016-05-02 08:21 UTC by Sebastian Krahmer
Modified: 2016-05-04 09:29 UTC (History)
2 users (show)

See Also:
Found By: Security Response Team
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Comment 1 Petr Gajdos 2016-05-02 14:52:38 UTC
https://bugs.php.net/bug.php?id=71637
Comment 2 Petr Gajdos 2016-05-03 12:41:53 UTC
php_filter_encode_url() uses safe_emalloc() before 7.0.

Testcase:

<?php
//3.php
ini_set('memory_limit',-1);
addcslashes(str_repeat('A',0xffffffff/4 + 0x1337),'/');
?>