The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-44459

CVE-2026-44459: Hono JWT Auth Bypass Vulnerability

CVE-2026-44459 is a JWT authentication bypass flaw in Hono Web framework that allows malformed tokens to bypass time-based validation. This article covers technical details, affected versions, and mitigation strategies.

Published: May 17, 2026

CVE-2026-44459 Overview

CVE-2026-44459 affects Hono, a web application framework supporting multiple JavaScript runtimes. The vulnerability stems from improper validation of JSON Web Token (JWT) NumericDate claims in the hono/utils/jwt module. Versions prior to 4.12.18 fail to enforce specification-compliant values for the exp, nbf, and iat claims. Tokens containing malformed claim values silently bypass time-based verification checks performed by verify(). The flaw maps to CWE-1284, improper validation of specified quantity in input. Exploitation requires that the malformed token reach verify(), typically when the application itself issues such tokens or when the signing key is under attacker control. Anonymous attackers cannot exploit this issue directly.

Critical Impact

Malformed JWT NumericDate values bypass expiration and not-before checks, allowing tokens that should be rejected to pass verification when an attacker controls token issuance or signing keys.

Affected Products

  • Hono framework versions prior to 4.12.18
  • Applications using hono/utils/jwt for token verification
  • Node.js and other JavaScript runtime deployments of Hono

Discovery Timeline

  • 2026-05-13 - CVE-2026-44459 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44459

Vulnerability Analysis

The vulnerability resides in Hono's JWT utility module, which verifies token claims as part of the verify() function. The JWT specification defines exp (expiration), nbf (not before), and iat (issued at) as NumericDate values representing seconds since the Unix epoch. Hono prior to 4.12.18 does not enforce that these claims contain valid numeric values. When a non-spec-compliant value such as a non-numeric type, NaN, or otherwise malformed input appears in these fields, the time comparison logic silently skips the check. The token is then treated as valid for time-based constraints.

This weakness has limited reach. An anonymous external attacker cannot inject arbitrary claim values into a legitimately signed token. Exploitation requires either application logic that issues tokens with malformed claims or compromise of the signing key. In those scenarios, an attacker can forge tokens that never expire or that bypass nbf constraints, extending session validity beyond intended limits.

Root Cause

The root cause is missing type and value validation against the JWT NumericDate specification (RFC 7519). The verification routine assumes claim values are numeric without enforcing the constraint. Non-numeric or otherwise invalid inputs cause the comparison to evaluate in a manner that bypasses rejection logic rather than triggering an error.

Attack Vector

The attack vector is network-based but requires high privileges, since the attacker must influence token issuance or possess the signing key. A typical exploitation path involves an application that constructs JWTs with attacker-influenced claim fields. The attacker supplies malformed exp or nbf values, and the resulting token passes Hono's verify() despite violating intended time-based restrictions.

No verified public proof-of-concept exists for this issue. Refer to the Hono GitHub Security Advisory GHSA-hm8q-7f3q-5f36 for vendor details.

Detection Methods for CVE-2026-44459

Indicators of Compromise

  • JWT tokens issued by the application containing non-numeric values in exp, nbf, or iat fields
  • Authenticated sessions persisting beyond configured expiration windows
  • Application logs showing successful verify() results for tokens with malformed time claims

Detection Strategies

  • Inventory all services using Hono and identify the installed version via npm list hono or equivalent package manifests
  • Audit JWT issuance code paths to confirm exp, nbf, and iat are written as integers and not as strings or computed expressions that may yield NaN
  • Decode sample tokens from production traffic and validate that NumericDate claims conform to RFC 7519

Monitoring Recommendations

  • Log JWT verification outcomes including claim values and reject any token whose time claims are not strictly numeric
  • Alert on sessions that remain active beyond the maximum configured token lifetime
  • Monitor dependency manifests for Hono versions below 4.12.18 across CI/CD pipelines

How to Mitigate CVE-2026-44459

Immediate Actions Required

  • Upgrade Hono to version 4.12.18 or later in all affected applications
  • Rotate JWT signing keys if there is any indication of key compromise
  • Review token issuance logic to ensure exp, nbf, and iat are always emitted as numeric values

Patch Information

The issue is fixed in Hono 4.12.18. The vendor advisory is published at Hono Security Advisory GHSA-hm8q-7f3q-5f36. The fix adds validation that rejects tokens whose NumericDate claims are not specification-compliant.

Workarounds

  • Add an application-level claim validator that runs before verify() and rejects tokens with non-numeric exp, nbf, or iat values
  • Restrict access to JWT signing keys using a secrets manager and enforce least-privilege on key retrieval
  • Avoid building JWT payloads from untrusted input that could influence the type or format of time claims
bash
# Upgrade Hono to the patched version
npm install hono@^4.12.18

# Verify installed version
npm list hono

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechHono

  • SeverityLOW

  • CVSS Score3.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-1284
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44457: Hono Auth Bypass Vulnerability

  • CVE-2026-39410: Hono Framework Auth Bypass Vulnerability

  • CVE-2026-39406: Hono Node.js Auth Bypass Vulnerability

  • CVE-2026-39409: Hono Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English