CVE-2024-25121
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedTYPO3 is an open source PHP based web content management system released under the GNU GPL. In affected versions of TYPO3 entities of the File Abstraction Layer (FAL) could be persisted directly via `DataHandler`. This allowed attackers to reference files in the fallback storage directly and retrieve their file names and contents. The fallback storage ("zero-storage") is used as a backward compatibility layer for files located outside properly configured file storages and within the public web root directory. Exploiting this vulnerability requires a valid backend user account. Users are advised to update to TYPO3 version 8.7.57 ELTS, 9.5.46 ELTS, 10.4.43 ELTS, 11.5.35 LTS, 12.4.11 LTS, or 13.0.1 which fix the problem described. When persisting entities of the File Abstraction Layer directly via DataHandler, `sys_file` entities are now denied by default, and `sys_file_reference` & `sys_file_metadata` entities are not permitted to reference files in the fallback storage anymore. When importing data from secure origins, this must be explicitly enabled in the corresponding DataHandler instance by using `$dataHandler->isImporting = true;`.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceTYPO3's DataHandler allows direct persistence of File Abstraction Layer (FAL) entities, enabling authenticated backend users to reference files in the fallback storage (zero-storage) used for files outside configured storages but within the web root. This permits unauthorized disclosure of file names and contents.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 8.0.0, < 8.7.57>= 9.0.0, < 9.5.46>= 10.0.0, < 10.4.43>= 11.0.0, < 11.5.35>= 12.0.0, < 12.4.11= 13.0.0CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check installed TYPO3 versionAccess the TYPO3 backend, go to Admin Tools > About, or check the composer.json file for the typo3/cms-core version numberAffected if The installed version is >= 8.0.0 and < 8.7.57, OR >= 9.0.0 and < 9.5.46, OR >= 10.0.0 and < 10.4.43, OR >= 11.0.0 and < 11.5.35, OR >= 12.0.0 and < 12.4.11, OR = 13.0.0
-
Confirm backend user access existsCheck if any backend user accounts are created in the TYPO3 installation by querying the be_users database table or checking through the backend user administration moduleAffected if Backend user accounts exist and are active in the system
-
Verify FAL fallback storage configurationCheck the sys_file table in the database for records where storage = 0, which indicates the fallback storage is in use. Run: SELECT uid, name, storage FROM sys_file WHERE storage = 0;Affected if There are any sys_file records with storage = 0, indicating fallback storage is being used and could be exploited
-
Check DataHandler accessibilityVerify that the TYPO3 DataHandler (core processing) is accessible to authenticated backend users through the TYPO3 backend or API endpointsAffected if Authenticated backend users have access to create or modify records through DataHandler
Your TYPO3 installation is affected if the installed version falls within the affected ranges AND backend users with write access to FAL entities exist in the system.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped8.7.579.5.4610.4.43
Update to TYPO3 version 8.7.57 ELTS, 9.5.46 ELTS, 10.4.43 ELTS, 11.5.35 LTS, 12.4.11 LTS, or 13.0.1 which enforce restrictions on sys_file entities and prevent fallback storage references.
Upgrade to the appropriate fixed version: 8.7.57 (ELTS), 9.5.46 (ELTS), 10.4.43 (ELTS), 11.5.35 (LTS), 12.4.11 (LTS), or 13.0.1 based on your current major branch
- Identify the current TYPO3 version from composer.json or typo3/sysext/core/Classes/Information/Typo3Version.php
- Backup the database and all files before proceeding with the upgrade
- For TYPO3 v8.x: Upgrade to version 8.7.57 (ELTS)
- For TYPO3 v9.x: Upgrade to version 9.5.46 (ELTS)
- For TYPO3 v10.x: Upgrade to version 10.4.43 (ELTS)
- For TYPO3 v11.x: Upgrade to version 11.5.35 (LTS)
- For TYPO3 v12.x: Upgrade to version 12.4.11 (LTS)
- For TYPO3 v13.x: Upgrade to version 13.0.1
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation3.0 h
- Testing3.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,512.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2024-25121 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2024-25121 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data