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-65838 Details

ANALYZED


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

Description

Skipper is an HTTP router and reverse proxy for service composition. Prior to 0.27.35, the opaAuthorizeRequestWithBody filter in filters/openpolicyagent/openpolicyagent.go can allow an oversized declared Content-Length request to bypass a deny-on-presence Rego policy because ExtractHttpBodyOptionally leaves OPA with an empty parsed_body while forwarding the complete request body upstream. This incomplete remediation of CVE-2026-50197 affects deployments that authorize request-body content and exceed -open-policy-agent-max-request-body-size, which defaults to 1 MB. Policy logic that does not reject input.attributes.request.http.truncated_body can therefore fail open and permit a forbidden payload to reach the protected service, while small bodies and the previously fixed chunked-body case are evaluated normally. This issue is fixed in version 0.27.35.

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-754Improper Check for Unusual or Exceptional Conditions[email protected]

Affected Products

ProductVersions
Zalando Skipper
< 0.27.35 (semver)

CPE

  • cpe:2.3:a:zalando:skipper:*:*:*:*:*:*:*:*

Remediation

  • Upgrade: 0.27.35moderate efforthttps://github.com/zalando/skipper/releases/tag/v0.27.35
  • Mitigation:low effort

    Configure your Rego policy to deny requests with oversized bodies. For example: default allow := false allow if { input.attributes.request.http.truncated_body == false # ... body-based conditions } Or: default deny := false deny if { input.attributes.request.http.truncated_body == true # ... body-based conditions }

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-65838
NVD Published Date:
Sep 14, 2026
NVD Last Modified:
Sep 16, 2026
Source:
[email protected]
CVE-2026-65838 Details - Not Deferred