CVE-2023-23924: URI validation failure on SVG parsing in Dompdf

Published Jan 31, 2023
·
Updated

Summary The URI validation on dompdf 2.0.1 can be bypassed on SVG parsing by passing <image> tags with uppercase letters. This might leads to arbitrary object unserialize on PHP < 8, through the phar URL wrapper.

Details The bug occurs during SVG parsing of <image> tags, in src/Image/Cache.php :

if ($type === "svg") { $parser = xmlparsercreate("utf-8"); xmlparsersetoption($parser, XMLOPTIONCASEFOLDING, false); xmlsetelementhandler( $parser, function ($parser, $name, $attributes) use ($options, $parsedurl, $fullurl) { if ($name === "image") { $attributes = arraychangekeycase($attributes, CASELOWER); This part will try to detect <image> tags in SVG, and will take the href to validate it against the protocolAllowed whitelist. However, the $name comparison with "image" is case sensitive, which means that such a tag in the SVG will pass :

<svg> <Image xlink:href="phar:///foo"></Image> </svg>

As the tag is named "Image" and not "image", it will not pass the condition to trigger the check.

A correct solution would be to strtolower the $name before the check :

if (strtolower($name) === "image") {

PoC Parsing the following SVG file is sufficient to reproduce the vulnerability :

<svg> <Image xlink:href="phar:///foo"></Image> </svg>

Impact An attacker might be able to exploit the vulnerability to call arbitrary URL with arbitrary protocols, if they can provide a SVG file to dompdf. In PHP versions before 8.0.0, it leads to arbitrary unserialize, that will leads at the very least to an arbitrary file deletion, and might leads to remote code execution, depending on classes that are available.

Other sources

Dompdf is an HTML to PDF converter. The URI validation on dompdf 2.0.1 can be bypassed on SVG parsing by passing <image> tags with uppercase letters. This may lead to arbitrary object unserialize on PHP < 8, through the phar URL wrapper. An attacker can exploit the vulnerability to call arbitrary URL with arbitrary protocols, if they can provide a SVG file to dompdf. In PHP versions before 8.0.0, it leads to arbitrary unserialize, that will lead to the very least to an arbitrary file deletion and even remote code execution, depending on classes that are available.

Dompdf vulnerable to URI validation failure on SVG parsing

Affected Software

3 affected componentsFixes available
composer/dompdf/dompdf<2.0.2
composer/dompdf/dompdf<2.0.2
2.0.2
Dompdf Project Dompdf=2.0.1

Event History

Jan 31, 2023
Advisory Published
02:30 PM
CVE Published
via MITRE·11:54 PM
Data Sourced
via MITRE·11:54 PM
DescriptionSeverityWeakness
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is CVE-2023-23924?

CVE-2023-23924 is a vulnerability that allows URI validation bypass on dompdf 2.0.1, leading to arbitrary object unserialize on PHP < 8.

2

How does the vulnerability in CVE-2023-23924 occur?

The vulnerability occurs during SVG parsing of `<image>` tags in dompdf.

3

What is the severity of CVE-2023-23924?

The severity of CVE-2023-23924 is critical (severity value: 10).

4

Which software versions are affected by CVE-2023-23924?

Versions up to 2.0.2 of dompdf are affected by CVE-2023-23924.

5

How can I fix CVE-2023-23924?

To fix CVE-2023-23924, update dompdf to version 2.0.2.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203