SECURITY UPDATE: NULL pointer dereference in SOAP apache:Map decoder
debian/patches/CVE-2026-7262.patch: fix wrong variable checked in
tozvalmap() NULL check, changing if (!xmlKey) to if (!xmlValue)
CVE-2026-7262
SECURITY UPDATE: Signed integer overflow in metaphone() char array offset
debian/patches/CVE-2026-7568.patch: widen widx in metaphone() and
howfar/idx in Lookahead() from int to size_t in
ext/standard/metaphone.c to prevent signed overflow on inputs
exceeding 2^31 bytes
CVE-2026-7568
SECURITY UPDATE: Denial of service via signed char passed to ctype functions
debian/patches/CVE-2026-7258.patch: consistently cast chars to
unsigned char before all ctype.h calls (isxdigit, isdigit, isalpha,
isalnum, isspace, tolower, toupper) across 54 files including
ext/standard/url.c (phpurldecode, phprawurldecode) and
ext/standard/formattedprint.c, Zend/zendvirtualcwd.c, and others