GHSA-3q34-rx83-r6mq

Suggest an improvement
Source
https://github.com/advisories/GHSA-3q34-rx83-r6mq
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/04/GHSA-3q34-rx83-r6mq/GHSA-3q34-rx83-r6mq.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-3q34-rx83-r6mq
Aliases
Published
2026-04-25T23:30:46Z
Modified
2026-06-25T18:56:30Z
Severity
  • 7.8 (High) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:H/SI:H/SA:N CVSS Calculator
Summary
Heimdall has an authorization bypass via path normalization mismatch
Details

Summary

Heimdall performs rule matching on the raw (non-normalized) request path, while downstream components may normalize dot-segments according to RFC 3986, Section 6.2.2.3. This discrepancy can result in heimdall authorizing a request for one path (e.g., /user/../admin, or URL-encoded variants such as /user/%2e%2e/admin or /user/%2e%2e%2fadmin. The latter would require the allow_encoded_slashes option to be set to on or no_decode.) while the downstream ultimately processes a different, normalized path (/admin).

Details

This vulnerability can be exploited by an adversary if rule matching is performed using free (named or unnamed) wildcards without further constraints, as shown in the example snippets below.

id: rule-1
match:
  routes:
    - path: /user/**
execute: # configured to require authentication and authorization
  # ...
id: rule-2
match:
  routes:
    - path: /public/**
execute: # configured to allow anonymous access
  # ...

If an adversary sends a request to /public/../user/whatever, rule-2 will be matched and executed. The downstream service may, however, normalize the request path and interpret it as /user/whatever.

Impact

Bypass of access control policies enforced by heimdall may lead to the following consequences:

  • Access to or modification of data that should be restricted
  • Invocation of functionality that is expected to require authentication or authorization
  • In certain configurations, escalation of privileges depending on the exposed functionality

Workarounds

  • Normalize HTTP paths or reject HTTP paths containing relative path expressions in the layers in front of Heimdall - this is good practice anyway. Some proxies do that by default, such as Traefik; others, such as Envoy, require additional configuration (for Envoy see normalize_path).
  • Include the ID of the rule expected to be executed in the JWT issued by heimdall and check that value in the consuming project's service.
Database specific
{
    "cwe_ids":  [
        "CWE-35",
        "CWE-436"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2026-04-25T23:30:46Z",
    "nvd_published_at":  "2026-05-08T04:16:22Z",
    "severity":  "HIGH"
}
References

Affected packages

Go / github.com/dadrus/heimdall

Package

Name
github.com/dadrus/heimdall
View open source insights on deps.dev
Purl
pkg:golang/github.com/dadrus/heimdall

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.17.14

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/04/GHSA-3q34-rx83-r6mq/GHSA-3q34-rx83-r6mq.json"