Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-57232 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

Contao is an Open Source CMS. From 5.3.35 through 5.3.47 and from 5.7.0-RC1 through 5.7.8, the Feed Reader front-end module passes configured RSS feed URLs from FeedReaderController::getResponse() to feedIo->read() without scheme or private-address validation, allowing a backend user with module-edit permissions to make the server request internal network services, loopback addresses, or cloud metadata endpoints. In core-bundle/src/Controller/FrontendModule/FeedReaderController.php, the getResponse() function iterates over the configured feed URLs and passes each one directly to the HTTP client (via $this->feedIo->read($url, new Feed())) with no validation, while the DCA field definition for rss_feed in tl_module.php carries no URL scheme or host validation and the HTTP client is wired as @psr18.http_client (Symfony HttpClient) with no SSRF protection configured, since NoPrivateNetworkHttpClient is not used. This issue is fixed in versions 5.3.48.

Metrics

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-918Server-Side Request Forgery (SSRF)[email protected]

Affected Products

ProductVersions
Contao
>= 5.3.35, <= 5.3.47 (semver)
>= 5.7.0-RC1, <= 5.7.8 (semver)

CPE

  • cpe:2.3:a:contao:contao:*:*:*:*:*:*:*:*

Remediation

  • Upgrade: 5.3.48moderate effort
  • Upgrade: 5.7.9moderate effort
  • Workaround:moderate effort

    Configure the DCA field for rss_feed in tl_module.php to validate URLs by adding 'rgxp' => 'url' and a custom validation callback to reject non-public URLs.

  • Workaround:moderate effort

    Wrap the injected HTTP client with Symfony's NoPrivateNetworkHttpClient to block all RFC-1918, loopback, and link-local addresses at the HTTP client level.

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-57232
NVD Published Date:
Jul 31, 2026
NVD Last Modified:
Sep 8, 2026
Source:
[email protected]
CVE-2026-57232 Details - Not Deferred