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

CVE-2026-27633: TinyWeb Memory Exhaustion DoS Vulnerability

CVE-2026-27633 is a memory exhaustion denial of service vulnerability in TinyWeb web server that allows attackers to crash the server using oversized POST requests. This article covers technical details, affected versions, and mitigations.

Published: February 27, 2026

CVE-2026-27633 Overview

CVE-2026-27633 is a Memory Exhaustion Denial of Service vulnerability affecting TinyWeb, a lightweight web server (HTTP, HTTPS) written in Delphi for Win32 platforms. Versions prior to 2.02 are vulnerable to unauthenticated remote denial of service attacks where attackers can send specially crafted HTTP POST requests with exceptionally large Content-Length header values (e.g., 2147483647). The server fails to enforce maximum payload size limits, causing it to continuously allocate memory for the request body (EntityBody) while streaming the payload, ultimately consuming all available system memory and crashing the server.

Critical Impact

Unauthenticated remote attackers can crash TinyWeb servers by sending a single malicious HTTP POST request, causing complete service disruption for all hosted services.

Affected Products

  • TinyWeb versions prior to 2.02
  • All Windows (Win32) deployments running vulnerable TinyWeb versions
  • Services and applications hosted behind vulnerable TinyWeb instances

Discovery Timeline

  • 2026-02-26 - CVE-2026-27633 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-27633

Vulnerability Analysis

This vulnerability is classified under CWE-400 (Uncontrolled Resource Consumption). The root issue lies in TinyWeb's HTTP request handling mechanism, which lacks proper bounds checking on incoming request payloads. When the server receives an HTTP POST request, it reads the Content-Length header to determine the expected payload size but fails to validate this value against any reasonable maximum threshold before allocating memory buffers.

An attacker can exploit this by setting an artificially large Content-Length value (such as the maximum 32-bit signed integer value of 2147483647) and then slowly streaming payload data to the server. The server will continue allocating memory in an attempt to store the incoming data, even when the requested size far exceeds available system resources.

Root Cause

The vulnerability stems from missing input validation on the Content-Length HTTP header value. Prior to version 2.02, the TinyWeb server had no CMaxEntityBodySize constant to limit the maximum acceptable payload size. The server trusted the client-provided Content-Length header unconditionally and allocated memory accordingly, creating a classic resource exhaustion condition.

Attack Vector

The attack is network-based and requires no authentication. An attacker simply needs network connectivity to the vulnerable TinyWeb server and can execute the attack by:

  1. Establishing a TCP connection to the target server
  2. Sending an HTTP POST request with a maliciously large Content-Length header value
  3. Slowly streaming arbitrary data to keep the connection alive while the server continues allocating memory
  4. Repeating as needed until server memory is exhausted and the service crashes
text
   //   - NVD: https://nvd.nist.gov/vuln/detail/CVE-2024-34199
   CMaxHeaderLineLength = 8192;   // CVE-2024-34199: Max 8KB per request line
   CMaxTotalHeaderSize = 65536;   // CVE-2024-34199: Max 64KB total headers
-
+  
+  // Unbounded Content-Length Memory Exhaustion DoS Prevention
+  CMaxEntityBodySize = 10485760; // Max 10MB per request payload
   // Buffer size for FindExecutable API result path.
   // Windows supports long paths beyond MAX_PATH (260), so we use 1000.
   CMaxExecutablePathLength = 1000;

Source: GitHub Commit Update

Detection Methods for CVE-2026-27633

Indicators of Compromise

  • HTTP POST requests with abnormally large Content-Length header values (greater than 10MB)
  • Rapid memory consumption spikes on servers running TinyWeb
  • Server process crashes or restarts correlated with incoming HTTP traffic
  • Slow-drip HTTP connections that remain open for extended periods while transmitting minimal data

Detection Strategies

  • Monitor web server logs for HTTP POST requests with Content-Length values exceeding reasonable thresholds
  • Implement network-level detection for HTTP requests containing Content-Length headers above 10MB (10485760 bytes)
  • Configure intrusion detection systems (IDS) to alert on memory exhaustion patterns targeting web server processes
  • Deploy application performance monitoring to detect abnormal memory allocation patterns

Monitoring Recommendations

  • Set up real-time alerting for TinyWeb process memory usage exceeding baseline thresholds
  • Monitor for connection patterns characteristic of slowloris-style attacks (long-lived connections with minimal data transfer)
  • Track server crash events and correlate with incoming HTTP traffic patterns
  • Implement logging for rejected requests that exceed configured body size limits after patching

How to Mitigate CVE-2026-27633

Immediate Actions Required

  • Upgrade TinyWeb to version 2.02 or later immediately
  • If immediate upgrade is not possible, deploy a Web Application Firewall (WAF) or reverse proxy in front of TinyWeb
  • Configure upstream proxies to enforce strict maximum request body size limits
  • Review and restrict network access to TinyWeb servers where possible

Patch Information

The fix is available in TinyWeb version 2.02. The patch introduces a new CMaxEntityBodySize constant set to 10485760 bytes (10MB) in SRC/SrvMain.pas, which enforces a hard limit on the maximum size of accepted request payloads. For complete details on the security fix, refer to the GitHub Security Advisory GHSA-992w and the patch commit.

Workarounds

  • Place TinyWeb behind nginx with client_max_body_size directive configured to a reasonable limit
  • Deploy Cloudflare or similar CDN/WAF services with request body size restrictions
  • Use Apache HTTP Server as a reverse proxy with LimitRequestBody directive
  • Implement network-level rate limiting to slow potential attack traffic
bash
# Configuration example for nginx reverse proxy
# Add to nginx server block to limit request body size
server {
    listen 80;
    server_name your-tinyweb-server.com;
    
    # Limit maximum request body size to 10MB
    client_max_body_size 10M;
    
    location / {
        proxy_pass http://127.0.0.1:8080;  # TinyWeb backend
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechTinyweb

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-992w

  • Masiutin CVE-2026-27633 Analysis
  • Related CVEs
  • CVE-2026-27630: TinyWeb Slowloris DoS Vulnerability

  • CVE-2026-29046: TinyWeb Header Injection Vulnerability

  • CVE-2026-28497: TinyWeb Auth Bypass Vulnerability

  • CVE-2026-27613: TinyWeb Auth Bypass 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