CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-24398

Hono IP Spoofing: When 255 + 100 Equals Access

Alon Barad
Alon Barad
Software Engineer

Jan 28, 2026·5 min read·43 visits

Executive Summary (TL;DR)

Hono versions prior to 4.11.7 used a lazy regular expression to validate IPv4 addresses, accepting values > 255 in octets. When processed, these large values overflow into adjacent octets (e.g., `1.2.2.355` becomes `1.2.3.99`), allowing attackers to spoof trusted IPs or bypass blocklists.

A logic flaw in Hono's IP address validation middleware allows attackers to bypass IP-based access controls by supplying malformed IPv4 addresses that trigger an integer overflow during binary conversion.

The Hook: Speed Kills (Your ACLs)

Hono has built a reputation as the "Ultrafast" web framework for the edge, running on Cloudflare Workers, Deno, and Bun. It is sleek, minimal, and generally delightful to use. However, when you prioritize speed and minimalism, sometimes the boring, gritty details of input validation get glossed over.

In the world of middleware, the IP Restriction Middleware is the bouncer. It checks your ID (IP address) against a list of VIPs (allowlist) or troublemakers (blocklist). If the bouncer is doing their job, only the right people get in.

But in Hono versions prior to 4.11.7, the bouncer had a serious vision problem. They weren't checking if your ID was valid; they were just checking if it looked like an ID from a distance. This vulnerability isn't a complex memory corruption in C; it's a beautiful example of how loose Regular Expressions and loose typing in JavaScript can combine to create a perfect logic flaw.

The Flaw: The Regex That Didn't Care

The root of the issue lies in how Hono decided what constitutes a valid IPv4 address. You might expect a strict check ensuring four octets, each between 0 and 255. Instead, the developers used a regex that was... optimistic.

Here is the culprit found in src/utils/ipaddr.ts:

const IPV4_REGEX = /^[0-9]{0,3}\.[0-9]{0,3}\.[0-9]{0,3}\.[0-9]{0,3}$/

See the problem? [0-9]{0,3} matches any 0 to 3 digit number. That includes 0, 255, and unfortunately, 999. It creates a syntactic check (is it digit-dot-digit?) rather than a semantic check (is it a valid byte?).

If the validation stopped there, the application might just crash or throw an error when handling invalid IPs. But the second part of the flaw is how this string is converted into a number for comparison. Hono converts IPs to binary integers to perform fast CIDR matching. The math used to convert these octets assumed that no input would ever exceed 255. When that assumption fails, we enter the realm of integer overflows.

The Code: Alchemy via Bitwise Operations

Let's look at the convertIPv4ToBinary function. This is where the magic happens—and by magic, I mean the unintended transmutation of numbers.

// The vulnerable logic
return (parts[0] << 24) + (parts[1] << 16) + (parts[2] << 8) + parts[3]

In a strongly typed language, putting 355 into a uint8 container would throw an error or wrap around immediately. In JavaScript, parts[3] is just a number. If parts[3] is 355, it is added to the total sum.

Here is the kicker: parts[2] << 8 shifts the third octet 8 bits to the left. If parts[3] is larger than 255 (8 bits), it spills over into the space occupied by parts[2].

It is effectively performing addition where the developer intended concatenation. This allows an attacker to modify the third octet by overloading the fourth octet.

The Exploit: Doing the Math

Let's construct a Proof of Concept. Suppose there is an internal admin panel allowlisted strictly for the IP 1.2.3.99. You are an attacker sitting at 1.2.2.x. You cannot natively change your IP to 1.2.3.99 without routing issues, but you can send a header (if the server trusts proxies) or spoof a packet that Hono interprets as the target.

We need to construct an IP 1.2.2.X that resolves to 1.2.3.99.

The Target: Octet 3 = 3 Octet 4 = 99

The Input: Octet 3 = 2 Octet 4 = ?

We need (2 << 8) + X to equal (3 << 8) + 99.

  1. Target Value: (3 * 256) + 99 = 768 + 99 = 867
  2. Current Value: (2 * 256) = 512
  3. The Difference: 867 - 512 = 355

So, if we send the IP 1.2.2.355:

The middleware sees 1.2.3.99, checks the allowlist, sees a match, and opens the door. You have successfully spoofed an IP address without actually spoofing any packets on the network layer.

The Fix: Strict Regex

The remediation is straightforward: stop accepting garbage input. The Hono team patched this in version 4.11.7 by replacing the lazy regex with a strict one that validates the 0-255 range.

Commit edbf6eea8e6c26a3937518d4ed91d8666edeec37 changes:

// The Fix
const IPV4_OCTET_PART = '(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])'
const IPV4_REGEX = new RegExp(`^(?:${IPV4_OCTET_PART}\\.){3}${IPV4_OCTET_PART}$`)

This new regex explicitly matches:

  • 250-255
  • 200-249
  • 100-199
  • 0-99

By ensuring the octets never exceed 255 strictly at the parsing stage, the bitwise math downstream is safe from overflow. It is a classic example of "Input Validation 101": validate constraints at the boundary, not deep in the business logic.

Official Patches

HonoHono v4.11.7 Release Notes

Fix Analysis (1)

Technical Appendix

CVSS Score
4.8/ 10
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N

Affected Systems

Hono Web Framework (JavaScript/TypeScript)Hono IP Restriction Middleware

Affected Versions Detail

Product
Affected Versions
Fixed Version
Hono
HonoJS
< 4.11.74.11.7
AttributeDetail
CWE IDCWE-185 (Incorrect Regular Expression)
CVSS4.8 (Medium)
Attack VectorNetwork
ImpactSecurity Bypass / IP Spoofing
Patch Commitedbf6eea8e6c26a3937518d4ed91d8666edeec37
Exploit ComplexityHigh (Requires knowledge of target IP/ACL)

MITRE ATT&CK Mapping

T1190Exploit Public-Facing Application
Initial Access
T1090Proxy
Command and Control
T1566Phishing
Initial Access
CWE-185
Incorrect Regular Expression

Known Exploits & Detection

ManualProof of concept involves sending an IP with octets > 255 to overflow adjacent values.

Vulnerability Timeline

Vulnerability Disclosed
2026-01-27
Patch Released (v4.11.7)
2026-01-27
CVE Assigned
2026-01-27

References & Sources

  • [1]GHSA-r354-f388-2fhh
  • [2]NVD CVE-2026-24398

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•1 day ago•CVE-2026-63462
7.5

CVE-2026-63462: Unauthenticated Stack Overflow Denial of Service in Unleash Server

An unauthenticated remote denial of service vulnerability exists in the Unleash feature management platform. By submitting a crafted JSON payload containing deeply nested structures to an OpenAPI-validated endpoint, an attacker can trigger uncontrolled recursion within the error formatting module. This leads to a call-stack exhaustion (RangeError: Maximum call stack size exceeded) inside the Node.js runtime, causing the service to crash immediately without recovery.

Alon Barad
Alon Barad
8 views•6 min read
•1 day ago•CVE-2026-63004
5.5

CVE-2026-63004: Server-Side Request Forgery in Unleash Addon and Integration Subsystem

CVE-2026-63004 is a server-side request forgery (SSRF) vulnerability in the Unleash feature management platform. Authenticated administrators with CREATE_ADDON or UPDATE_ADDON privileges can exploit this vulnerability to initiate requests to loopback addresses, private networks, and cloud metadata endpoints, potentially leading to information disclosure and credential extraction.

Amit Schendel
Amit Schendel
7 views•8 min read
•1 day ago•CVE-2026-63466
4.1

CVE-2026-63466: Process-Wide Security Degradation via Global Module Mutation in Unleash

Prior to version 8.0.3, Unleash's Markdown event formatter directly mutated the global template-escaping function of the shared mustache Node.js module, resulting in a process-wide security degradation where HTML/Markdown escaping was permanently disabled for the application lifetime.

Alon Barad
Alon Barad
3 views•6 min read
•1 day ago•CVE-2026-76904
9.8

CVE-2026-76904: Unauthenticated SQL Injection in GeoTools PostGIS DataStore Component

A critical SQL injection vulnerability exists in the GeoTools open-source Java library. This vulnerability is situated within the post-processing phase of OGC Filter conversion inside the PostGIS DataStore module. Specifically, the `jsonArrayContains` function does not validate or sanitize its arguments before constructing PostgreSQL SQL/JSON path evaluation queries. An unauthenticated remote attacker can exploit this weakness by submitting crafted filters via standard OGC services like WFS or WMS to execute arbitrary SQL commands on the underlying database system.

Alon Barad
Alon Barad
9 views•5 min read
•1 day ago•CVE-2026-61824
8.2

CVE-2026-61824: High-Severity Cross-Site Scripting (XSS) via Unsanitized Site Extractors in Defuddle

CVE-2026-61824 is a high-severity Cross-Site Scripting (XSS) vulnerability in kepano/defuddle before version 0.19.1. Custom site extractors for platforms such as X/Twitter, Substack, and YouTube constructed HTML representations via template string interpolation without output escaping. This allowed malicious pages to bypass standard parser sanitization routines and execute arbitrary JavaScript.

Amit Schendel
Amit Schendel
5 views•7 min read
•1 day ago•CVE-2026-63421
7.5

CVE-2026-63421: Query Limit Bypass via Negative Integer Input in KeystoneJS core resolvers

A high-severity vulnerability exists in KeystoneJS, a popular Node.js CMS and GraphQL framework, where the query resolution engine fails to validate signed negative integers within the pagination subsystem. Unauthenticated remote attackers can leverage this flaw to bypass the 'graphql.maxTake' safety boundary. By sending large negative values in the 'take' query parameter, the underlying Prisma ORM interprets the value as an instruction to fetch rows from the end of the collection, allowing malicious actors to bypass pagination limits, trigger database resource exhaustion, and execute application-level Denial of Service (DoS) attacks.

Alon Barad
Alon Barad
6 views•6 min read