CVE-2019-11832:
TYPO3 Image Processing susceptible to Code Execution
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.74654%
CWE
Published
5/24/2022
Updated
2/29/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
typo3/cms-core | composer | >= 8.0.0, < 8.7.25 | 8.7.25 |
typo3/cms-core | composer | >= 9.0.0, < 9.5.6 | 9.5.6 |
typo3/cms | composer | >= 8.0.0, < 8.7.25 | 8.7.25 |
typo3/cms | composer | >= 9.0.0, < 9.5.6 | 9.5.6 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from improper file type handling in ImageMagick invocations. The original code in GraphicalFunctions.php used raw filenames with frame suffixes (e.g., 'file[0]') without explicit format specification ('png:file.png'). This allowed ImageMagick to perform type guessing based on file content, enabling execution of embedded PostScript code when GhostScript was present. The commit introduced ImageMagickFile to enforce format prefixes, directly addressing these insecure command constructions in imageMagickExec and imageMagickIdentify methods.