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

CVE-2026-35526: Strawberry GraphQL DoS Vulnerability

CVE-2026-35526 is a denial of service flaw in Strawberry GraphQL that allows attackers to exhaust server resources via WebSocket subscriptions. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-35526 Overview

CVE-2026-35526 is a Resource Exhaustion vulnerability affecting Strawberry GraphQL, a popular Python library for creating GraphQL APIs. The vulnerability exists in the WebSocket subscription handlers for both the graphql-transport-ws and legacy graphql-ws protocols. These handlers allocate an asyncio.Task and associated Operation object for every incoming subscribe message without enforcing any limit on the number of active subscriptions per connection.

Critical Impact

An unauthenticated attacker can cause server degradation or complete Out-of-Memory (OOM) crash by flooding subscribe messages through a single WebSocket connection, leading to linear memory growth and event loop saturation.

Affected Products

  • Strawberry GraphQL versions prior to 0.312.3
  • Applications using graphql-transport-ws protocol
  • Applications using legacy graphql-ws protocol

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-35526 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35526

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue resides in how Strawberry GraphQL's WebSocket subscription handlers process incoming subscribe messages. When a client establishes a WebSocket connection and sends a connection_init message, the server enters a state where it processes subscription requests.

For each subscribe message received with a unique ID, the server unconditionally spawns a new asyncio.Task and creates an associated async generator to handle the subscription. The critical flaw is that there is no mechanism to limit the number of concurrent subscriptions that can be created on a single WebSocket connection. This design allows an attacker to exhaust server resources by rapidly sending subscription requests.

Root Cause

The root cause is the absence of rate limiting or resource quotas in the WebSocket subscription handling code. The server trusts that clients will behave reasonably and does not implement defensive measures against malicious subscription flooding. Each subscription creates persistent memory allocations (tasks and generators) that remain active until explicitly cancelled or the connection closes, enabling unbounded resource consumption.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Opening a single WebSocket connection to a vulnerable Strawberry GraphQL endpoint
  2. Sending a connection_init message to establish the subscription protocol
  3. Flooding the connection with subscribe messages, each containing a unique operation ID
  4. Each message triggers the creation of a new asyncio.Task and async generator
  5. Memory consumption grows linearly with each subscription until the server either becomes unresponsive (event loop saturation) or crashes due to OOM

The attack is particularly dangerous because it requires minimal resources from the attacker—a single WebSocket connection can generate sufficient load to crash a server. For more technical details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-35526

Indicators of Compromise

  • Abnormally high number of WebSocket connections or subscriptions from single IP addresses
  • Rapid increase in server memory utilization without corresponding legitimate traffic increase
  • Event loop latency spikes or unresponsive GraphQL endpoints
  • Server logs showing excessive subscribe messages with sequential or random unique IDs

Detection Strategies

  • Monitor WebSocket connection metrics for unusual subscription patterns per connection
  • Implement alerting on memory usage thresholds and asyncio task counts
  • Deploy application-level logging to track subscription creation rates
  • Use network traffic analysis to identify subscription flooding patterns

Monitoring Recommendations

  • Configure memory usage alerts at 70-80% threshold to catch attacks before OOM
  • Monitor asyncio task counts and set alerts for abnormal growth patterns
  • Track WebSocket message rates per connection and flag statistical anomalies
  • Implement connection-level metrics to identify single connections with excessive subscriptions

How to Mitigate CVE-2026-35526

Immediate Actions Required

  • Upgrade Strawberry GraphQL to version 0.312.3 or later immediately
  • Review and audit all GraphQL WebSocket endpoints for exposure
  • Implement connection-level rate limiting at the reverse proxy or load balancer layer
  • Consider temporarily disabling WebSocket subscriptions if upgrade is not immediately possible

Patch Information

The vulnerability has been fixed in Strawberry GraphQL version 0.312.3. The patch introduces limits on the number of active subscriptions that can be created per WebSocket connection. Organizations should update their dependencies as soon as possible.

For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy (nginx, HAProxy) with WebSocket message rate limiting
  • Implement authentication requirements for WebSocket subscription endpoints
  • Configure connection timeouts to automatically close long-running idle connections
  • Use infrastructure-level DDoS protection services to filter malicious traffic patterns
bash
# Example nginx rate limiting configuration for WebSocket endpoints
# Add to your nginx server block

# Define a rate limiting zone for WebSocket connections
limit_req_zone $binary_remote_addr zone=ws_limit:10m rate=10r/s;

# Apply to GraphQL WebSocket location
location /graphql/ws {
    limit_req zone=ws_limit burst=20 nodelay;
    proxy_pass http://backend;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_read_timeout 86400;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechStrawberry Graphql

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35523: Strawberry GraphQL 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