CVE-2026-27654
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 · uneditedNGINX Open Source and NGINX Plus have a vulnerability in the ngx_http_dav_module module that might allow an attacker to trigger a buffer overflow to the NGINX worker process; this vulnerability may result in termination of the NGINX worker process or modification of source or destination file names outside the document root. This issue affects NGINX Open Source and NGINX Plus when the configuration file uses DAV module MOVE or COPY methods, prefix location (nonregular expression location configuration), and alias directives. The integrity impact is constrained because the NGINX worker process user has low privileges and does not have access to the entire system. Note: Software versions which have reached End of Technical Support (EoTS) are not evaluated.
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 confidenceA buffer overflow vulnerability in NGINX's ngx_http_dav_module allows attackers to crash the worker process or manipulate file names outside the document root. Exploitation requires DAV MOVE/COPY methods, prefix location directives, and alias configuration. The attacker's impact is limited by the low-privilege worker process user.
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= r32= r33= r34= r35= r36>= 0.5.13, <= 0.9.7>= 1.0.0, < 1.28.3>= 1.29.0, < 1.29.7CVSS 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
- Low
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/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 checksWork through these to decide whether this CVE applies to you.
-
Check NGINX version against affected rangesRun 'nginx -v' or 'nginx -V' to get the installed version. Compare with: F5 Nginx Plus r32-r36, or Nginx Open Source 0.5.13-0.9.7, 1.0.0-1.28.2, 1.29.0-1.29.6Affected if Installed version falls within any of the affected ranges listed
-
Verify ngx_http_dav_module is loadedRun 'nginx -V 2>&1 | grep -o dav' or check for 'load_module' directives in nginx.conf referencing ngx_http_dav_module.soAffected if The dav_module is compiled in or dynamically loaded
-
Identify locations with DAV methods configuredSearch nginx.conf and included files for 'dav_methods' directive, looking for MOVE or COPY methods (e.g., 'dav_methods PUT DELETE MOVE COPY')Affected if DAV MOVE or COPY methods are explicitly allowed in any location block
-
Check for prefix location blocksSearch nginx.conf for 'location' blocks with prefix matching (e.g., 'location /prefix', 'location ^~ /prefix') that also contain a 'dav_methods' directive with MOVE or COPYAffected if A prefix location block has DAV MOVE or COPY methods configured
-
Verify alias directive in vulnerable locationWithin any prefix location that has DAV MOVE/COPY enabled, check if an 'alias' directive is present (e.g., 'alias /path/to/files/;')Affected if An 'alias' directive is used within a prefix location that has DAV MOVE or COPY methods enabled
The environment is affected if NGINX version is in the affected range AND ngx_http_dav_module is loaded AND DAV MOVE/COPY methods are allowed in a location block that uses both prefix matching and an alias directive.
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 · scoped1.28.31.29.7
Review NGINX configurations for DAV module usage with prefix locations and alias directives; either disable unused DAV methods, apply stricter access controls, or upgrade to a patched NGINX version.
NGINX Open Source: 1.28.3+ or 1.29.7+ | NGINX Plus: r36
- 1. Identify the currently installed NGINX version using 'nginx -v' or 'nginx -V'
- 2. For NGINX Open Source: determine if running version is in an affected branch (0.5.13-0.9.7, 1.0.0-1.28.2, or 1.29.0-1.29.6)
- 3. For NGINX Plus: check if running r32, r33, r34, or r35
- 4. For NGINX Open Source: upgrade to version 1.28.3 or higher (if on 1.28.x), or 1.29.7 or higher (if on 1.29.x)
- 5. For NGINX Plus: upgrade to r36 or later
- 6. Verify the upgrade was successful by checking 'nginx -v' output
- 7. Test that NGINX starts properly and the DAV functionality works as expected
- 8. Review nginx.conf to ensure DAV module configurations (MOVE, COPY methods with alias directives in prefix locations) are still needed; consider disabling if not required
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation2.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,152.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-27654 — 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- my.f5.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- bugzilla.redhat.com
- security.access.redhat.com
- nvd.nist.gov
Practitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-27654 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