Node.jsApplication

CVE-2025-55132

MEDIUM · 5.3 CVSS v3.1 Published 2026-01-20
Fix available
A fix is available. Upgrade to 20.20.0 / 22.22.0 or later.
See remediation →
62/100
Remediation priority · Elevated
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 flaw in Node.js's permission model allows a file's access and modification timestamps to be changed via `futimes()` even when the process has only read permissions. Unlike `utimes()`, `futimes()` does not apply the expected write-permission checks, which means file metadata can be modified in read-only directories. This behavior could be used to alter timestamps in ways that obscure activity, reducing the reliability of logs. This vulnerability affects users of the permission model on Node.js v20, v22, v24, and v25.

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 confidence

Node.js's permission model fails to enforce write-permission checks when using `futimes()` to modify file access and modification timestamps. While `utimes()` correctly applies permission checks, `futimes()` bypasses these controls, allowing timestamp manipulation in read-only directories even when the process has only read permissions. This can obscure forensic evidence and reduce log reliability.

MitigationUsers of Node.js permission model should monitor for the availability of patched versions and upgrade once released. Consider implementing additional filesystem monitoring to detect unexpected timestamp changes as a compensating control.

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
Node.jsApplication
Affected:>= 20.0.0, < 20.20.0>= 22.0.0, < 22.22.0>= 24.0.0, < 24.13.0>= 25.0.0, < 25.3.0

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
Low
Integrity
None
Availability
None

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/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 checks

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

  1. Check Node.js version
    Run `node --version` or `node -p process.version` to get the installed Node.js version
    Affected if The version falls within >= 20.0.0 and < 20.20.0, >= 22.0.0 and < 22.22.0, >= 24.0.0 and < 24.13.0, or >= 25.0.0 and < 25.3.0
  2. Verify if permission model is enabled
    Check if the Node.js process was started with `--experimental-permission` flag by inspecting the process command line via `ps aux | grep node` or by checking if `process.permission` API is available in the Node.js runtime
    Affected if The permission model is enabled and the Node.js version is in the affected range
  3. Identify timestamp modification operations
    Review application code and dependencies for calls to `futimes()`, `fs.futimes()`, `fs.futimesSync()`, or file descriptor-based timestamp modification functions
    Affected if The application uses futimes() or related functions to modify file timestamps on files in read-only directories while running with restricted (read-only) permissions
  4. Check filesystem write access
    Inspect the application's permission scope: if using the permission model, verify whether any write permissions are granted to directories that should be read-only via `fs.*` path permissions or the `--allow-fs-read` and `--allow-fs-write` flags
    Affected if The application operates with read-only filesystem permissions but may need to modify file timestamps, making it vulnerable to the bypass

You are affected if you run a Node.js version within the affected ranges, have the permission model enabled, and your application or a library it uses relies on futimes() to modify timestamps in directories where write access is restricted.

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 20.20.0 / 22.22.0 / 24.13.0 or later
Fixed in 20.20.022.22.024.13.0
Interim mitigation

Users of Node.js permission model should monitor for the availability of patched versions and upgrade once released. Consider implementing additional filesystem monitoring to detect unexpected timestamp changes as a compensating control.

Recommended fix High confidence

Node.js 20.20.0, 22.22.0, 24.13.0, or 25.3.0 (whichever corresponds to your release line)

  1. Upgrade Node.js to version 20.20.0 or higher for the v20 release line
  2. Upgrade Node.js to version 22.22.0 or higher for the v22 release line
  3. Upgrade Node.js to version 24.13.0 or higher for the v24 release line
  4. Upgrade Node.js to version 25.3.0 or higher for the v25 release line
  5. Verify the upgrade by running `node -v` to confirm the installed version
  6. If using the permission model (`--permission` flag), test that the fix properly enforces write-permission checks for `futimes()` operations
Caveat Minor version upgrades typically do not introduce breaking changes, but review the Node.js release notes for any deprecation notices or behavioral changes in your used features

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

Fix this in Node.js Scoped from the published advisory
  • Consultation3.0 h
  • Implementation2.0 h
  • Testing3.0 h
  • Review / QA2.0 h
10.0 hours of engineering $1,770
Get the upgrade done

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

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

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