GHSA-xh87-mx6m-69f3

Suggest an improvement
Source
https://github.com/advisories/GHSA-xh87-mx6m-69f3
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/02/GHSA-xh87-mx6m-69f3/GHSA-xh87-mx6m-69f3.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-xh87-mx6m-69f3
Aliases
Related
Published
2026-02-25T18:02:19Z
Modified
2026-02-28T06:28:56.458554Z
Severity
  • 8.2 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N CVSS Calculator
Summary
Hono is Vulnerable to Authentication Bypass by IP Spoofing in AWS Lambda ALB conninfo
Details

Summary

When using the AWS Lambda adapter (hono/aws-lambda) behind an Application Load Balancer (ALB), the getConnInfo() function incorrectly selected the first value from the X-Forwarded-For header.

Because AWS ALB appends the real client IP address to the end of the X-Forwarded-For header, the first value can be attacker-controlled.

This could allow IP-based access control mechanisms (such as the ipRestriction middleware) to be bypassed.

Details

In ALB environments, AWS appends the actual client IP address to the end of any existing X-Forwarded-For header value. However, the previous implementation of getConnInfo() extracted the leftmost IP address:

address = xff.split(',')[0].trim()

If a client sent:

X-Forwarded-For: <spoofed-ip>

ALB would forward:

X-Forwarded-For: <spoofed-ip>, <real-client-ip>

Since the implementation selected the first value, the spoofed IP address was trusted. This affected applications using:

ipRestriction(getConnInfo, { allowList: [...] })

or any custom middleware relying on getConnInfo(c).remote.address for authorization decisions.

The issue only affects deployments using the AWS Lambda adapter behind an ALB. API Gateway (v1/v2) and Lambda Function URLs are not affected, as they use AWS-provided source IP values from requestContext.

Impact

An unauthenticated remote attacker could bypass IP-based access restrictions by supplying a crafted X-Forwarded-For header. This may allow access to resources that were intended to be restricted by IP address.

Only applications deployed behind an ALB and relying on getConnInfo() for IP-based authorization are affected.

Database specific
{
    "github_reviewed_at": "2026-02-25T18:02:19Z",
    "nvd_published_at": "2026-02-25T16:23:26Z",
    "severity": "HIGH",
    "cwe_ids": [
        "CWE-290",
        "CWE-345"
    ],
    "github_reviewed": true
}
References

Affected packages

npm / hono

Package

Affected ranges

Type
SEMVER
Events
Introduced
4.12.0
Fixed
4.12.2

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/02/GHSA-xh87-mx6m-69f3/GHSA-xh87-mx6m-69f3.json"