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-28497

CVE-2026-28497: TinyWeb Auth Bypass Vulnerability

CVE-2026-28497 is an authentication bypass flaw in TinyWeb web server that enables HTTP Request Smuggling through integer overflow. This article covers technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-28497 Overview

CVE-2026-28497 is a critical integer overflow vulnerability affecting TinyWeb, a lightweight HTTP/HTTPS web server written in Delphi for Win32 platforms. The vulnerability exists in the string-to-integer conversion routine (_Val) which improperly handles Content-Length header parsing. This flaw allows unauthenticated remote attackers to bypass Content-Length restrictions and perform HTTP Request Smuggling attacks, potentially leading to unauthorized access, security filter bypass, and cache poisoning.

Critical Impact

Unauthenticated remote attackers can exploit this integer overflow to bypass security controls and poison caches, with critical impact on servers using persistent connections (Keep-Alive).

Affected Products

  • TinyWeb versions prior to 2.03
  • Windows 32-bit deployments running vulnerable TinyWeb instances
  • Infrastructure using TinyWeb with Keep-Alive persistent connections enabled

Discovery Timeline

  • March 6, 2026 - CVE-2026-28497 published to NVD
  • March 9, 2026 - Last updated in NVD database

Technical Details for CVE-2026-28497

Vulnerability Analysis

This vulnerability stems from an integer overflow condition in TinyWeb's _Val function, which is responsible for converting string representations of numbers to integer values. When processing the Content-Length HTTP header, the function fails to properly validate numeric boundaries before conversion. This weakness is classified under CWE-190 (Integer Overflow or Wraparound).

The vulnerability is particularly dangerous because it enables HTTP Request Smuggling attacks. By crafting a malicious request with a specially designed Content-Length value that triggers the integer overflow, an attacker can cause the server to misinterpret request boundaries. This desynchronization between how the front-end and back-end systems parse HTTP requests creates opportunities for request hijacking.

The attack requires no authentication and can be executed remotely over the network with low complexity. The impact is most severe on servers configured to use persistent connections (Keep-Alive), as the connection reuse amplifies the smuggling attack's effectiveness across multiple requests.

Root Cause

The root cause lies in the _Val string-to-integer conversion routine that processes HTTP headers without proper bounds checking. When a Content-Length value exceeds the maximum integer boundary, the routine wraps around to a smaller or negative value rather than rejecting the input. This allows attackers to manipulate how the server calculates request body lengths.

Attack Vector

The attack is network-based, requiring the attacker to send specially crafted HTTP requests to a vulnerable TinyWeb server. The exploitation flow involves:

  1. The attacker sends an HTTP request with a maliciously crafted Content-Length header value designed to trigger integer overflow
  2. The _Val function processes this value and wraps around to an incorrect length
  3. The server misinterprets request boundaries, treating part of the next request as body content or vice versa
  4. This desynchronization enables request smuggling, allowing the attacker to inject malicious requests or hijack legitimate ones

The attack mechanism exploits the integer overflow in TinyWeb's Content-Length parsing. When the _Val function receives a carefully crafted numeric string that exceeds integer bounds, it wraps to an unexpected value, causing the server to miscalculate HTTP request boundaries. For detailed technical analysis, see the GitHub Security Advisory.

Detection Methods for CVE-2026-28497

Indicators of Compromise

  • Unusual or malformed Content-Length header values in HTTP request logs, particularly very large numbers
  • Desynchronized or overlapping HTTP requests in server logs indicating smuggling attempts
  • Unexpected request patterns where request bodies appear to contain additional HTTP headers
  • Cache entries containing unexpected or poisoned content

Detection Strategies

  • Implement web application firewall (WAF) rules to detect abnormally large Content-Length header values
  • Monitor for HTTP request anomalies including mismatched Content-Length and Transfer-Encoding headers
  • Deploy network intrusion detection signatures targeting HTTP request smuggling patterns
  • Use SentinelOne's network visibility capabilities to identify suspicious HTTP traffic patterns

Monitoring Recommendations

  • Enable detailed HTTP request logging on TinyWeb servers to capture full header information
  • Configure alerting for Content-Length values exceeding reasonable thresholds for your application
  • Monitor for signs of cache poisoning including unexpected content served from cache layers
  • Implement real-time log analysis to detect patterns consistent with HTTP smuggling attempts

How to Mitigate CVE-2026-28497

Immediate Actions Required

  • Upgrade TinyWeb to version 2.03 or later immediately
  • Disable Keep-Alive/persistent connections as a temporary measure if immediate patching is not possible
  • Place vulnerable TinyWeb instances behind a properly configured reverse proxy that normalizes HTTP requests
  • Review server logs for any indication of prior exploitation attempts

Patch Information

The vulnerability has been patched in TinyWeb version 2.03. The fix addresses the integer overflow condition in the _Val function to properly validate numeric boundaries during Content-Length header parsing. The patch commit is available on GitHub for review. Organizations should update to version 2.03 or the latest available version.

Workarounds

  • Disable HTTP Keep-Alive connections to reduce the attack surface and impact of potential smuggling attacks
  • Deploy a reverse proxy (such as nginx or HAProxy) in front of TinyWeb that properly validates and normalizes HTTP requests
  • Implement strict Content-Length header validation at the network perimeter using WAF rules
  • Restrict network access to TinyWeb servers to trusted IP ranges where feasible
bash
# Configuration example - Disable Keep-Alive in reverse proxy
# nginx configuration to normalize requests before proxying to TinyWeb
location / {
    proxy_pass http://tinyweb-backend;
    proxy_http_version 1.0;
    proxy_set_header Connection "";
    # Enforce strict Content-Length validation
    client_max_body_size 10m;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechTinyweb

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-190
  • Technical References
  • GitHub Commit Reference

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27613: TinyWeb Auth Bypass Vulnerability

  • CVE-2026-29046: TinyWeb Header Injection Vulnerability

  • CVE-2026-27633: TinyWeb Memory Exhaustion DoS Vulnerability

  • CVE-2026-27630: TinyWeb Slowloris DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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