CxfApplication · Apache

CVE-2025-23184

HIGH · 7.5 CVSS v3.1 Published 2025-01-21
Fix available
A fix is available. Upgrade to 3.5.10 / 3.6.5 or later.
See remediation →
84/100
Remediation priority · High
Remotely reachable No privileges Zero-click

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 · unedited
A potential denial of service vulnerability is present in versions of Apache CXF before 3.5.10, 3.6.5 and 4.0.6. In some edge cases, the CachedOutputStream instances may not be closed and, if backed by temporary files, may fill up the file system (it applies to servers and clients).

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 · moderate confidence

Apache CXF's CachedOutputStream may not be properly closed in certain edge cases. When these streams are backed by temporary files rather than in-memory caching, the temp files are not cleaned up, potentially filling the file system and causing denial of service on both client and server deployments.

MitigationUpgrade Apache CXF to version 3.5.10, 3.6.5, or 4.0.6 or later to receive the patch for proper CachedOutputStream closure. Monitor disk usage and clean up any existing CXF temp files in the system temporary directory.

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
CxfApplication
Affected:< 3.5.10>= 3.6.0, < 3.6.5>= 4.0.0, < 4.0.6

CVSS 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
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

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 checks

Work through these to decide whether this CVE applies to you.

  1. Identify the installed Apache CXF version
    Locate the CXF jar files in your application (typically in WEB-INF/lib or classpath) and check the version from the jar filename or manifest. Common locations: Maven pom.xml dependency, lib directory, or OSGi bundle manifest.
    Affected if The version is less than 3.5.10, OR between 3.6.0 and 3.6.4 inclusive, OR between 4.0.0 and 4.0.5 inclusive.
  2. Determine if CachedOutputStream uses file-based caching
    Check the CXF configuration for the 'org.apache.cxf.io.CachedOutputStream.maxCacheSize' and 'org.apache.cxf.io.CachedOutputStream.maxTempFileSize' properties. When the output exceeds maxCacheSize, CXF writes to temp files instead of memory.
    Affected if Large message handling is enabled and output sizes exceed the in-memory cache threshold, forcing file-based caching.
  3. Inspect the system temporary directory for CXF temp files
    Examine the Java system temp directory (java.io.tmpdir, commonly /tmp or AppData\Local\Temp) for files matching patterns like 'cxf-temp-*' or '*CachedOutputStream*'. Use commands: 'ls -la /tmp/ | grep -i cxf' on Linux or 'dir C:\Users\*\AppData\Local\Temp /s | findstr cxf' on Windows.
    Affected if Many CXF temp files exist and remain after processing, indicating improper cleanup.
  4. Verify application code uses CachedOutputStream
    Search application source code and dependencies for direct usage of org.apache.cxf.io.CachedOutputStream, or look for CXF handlers/interceptors that process request/response bodies which internally use this class.
    Affected if The application processes XML/SOAP messages through CXF interceptors that invoke CachedOutputStream.

You are affected if your Apache CXF version falls within the vulnerable ranges AND your application processes messages large enough to trigger file-based caching in CachedOutputStream, resulting in accumulating temp files.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

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 · scoped
Upgrade available Upgrade to 3.5.10 / 3.6.5 / 4.0.6 or later
Fixed in 3.5.103.6.54.0.6
Interim mitigation

Upgrade Apache CXF to version 3.5.10, 3.6.5, or 4.0.6 or later to receive the patch for proper CachedOutputStream closure. Monitor disk usage and clean up any existing CXF temp files in the system temporary directory.

Recommended fix Moderate confidence

Upgrade to CXF 4.0.6 (or 3.6.5/3.5.10 depending on branch)

  1. Identify all Java applications and services in your environment that depend on Apache CXF
  2. For each project, locate the dependency management file (pom.xml, build.gradle, or equivalent)
  3. Locate the CXF dependency declarations - typically org.apache.cxf:cxf-core or org.apache.cxf:cxf-*-bundle
  4. Update the CXF version to 4.0.6 (or 3.6.5 if remaining on the 3.x line, or 3.5.10 if on the 3.5.x line)
  5. Run dependency resolution to verify the new version is pulled in: mvn dependency:tree (Maven) or ./gradlew dependencies (Gradle)
  6. Rebuild and test the application to ensure compatibility
  7. Deploy the updated application to all environments (dev, staging, production)
  8. Monitor file system usage in production after deployment to verify the fix is effective
Caveat Review CXF 4.0.x release notes for any API or behavior changes from your current version; minor version upgrades typically have minimal breaking changes

Generated from the published advisory — verify against the referenced sources before acting.

Fix this in Cxf Scoped from the published advisory
  • Consultation2.0 h
  • Implementation4.0 h
  • Testing8.0 h
  • Review / QA4.0 h
18.0 hours of engineering $3,040
Get the upgrade done

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,864.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2025-23184 — 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 sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2025-23184 in production — separate from our analysis above.

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.

What this is

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.

What belongs here
  • 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