Due to a recent vulnerability in libwebp before version 1.3.2 (CVE-2023-4863) I want to find out what libwebp version the Windows builds of PHP (downloadable here: https://windows.php.net/) is using. Is there any way to find out the version?
I've tried to find this version in the following places already:
- phpinfo() - only gives the info whether webp support is enabled or not
- PHP Changelogs
- Texts in the DLLs
- Texts in the debug symbols
- The dependencies the PHP SDK downloads when building PHP
But no luck - I've found out the relevant constants from libwebp are MUX_MAJ_VERSION
, MUX_MIN_VERSION
and MUX_REV_VERSION
, but those are not contained in the debug symbols.
Any idea how to find the linked libwebp version or at least if the vulnerability is present in the used version?
imagecreatefromwebp
crashes when fed it? – Waits