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

CVE-2026-35611: Addressable URI Template DoS Vulnerability

CVE-2026-35611 is a denial of service vulnerability in Addressable's URI template implementation caused by catastrophic backtracking. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35611 Overview

CVE-2026-35611 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting the Addressable Ruby library, an alternative implementation to Ruby's standard library URI implementation. The vulnerability exists in versions 2.3.0 through 2.8.x of the library, where URI template implementations generate regular expressions vulnerable to catastrophic backtracking when processing maliciously crafted URIs.

Critical Impact

Applications using Addressable for URI template matching can be rendered unresponsive through denial of service attacks that exploit catastrophic regex backtracking, consuming excessive CPU resources.

Affected Products

  • Addressable Ruby library versions 2.3.0 to before 2.9.0
  • Ruby applications using Addressable URI template functionality
  • Web services and APIs utilizing Addressable for URI parsing

Discovery Timeline

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

Technical Details for CVE-2026-35611

Vulnerability Analysis

This vulnerability falls under CWE-1333 (Inefficient Regular Expression Complexity), commonly known as ReDoS (Regular Expression Denial of Service). The Addressable library's URI template implementation generates regular expressions that exhibit catastrophic backtracking behavior when matched against specially crafted input.

Two distinct classes of vulnerable patterns exist within the codebase:

  1. Explode modifier patterns: Templates using the * (explode) modifier with any expansion operator (e.g., {foo*}, {+var*}, {#var*}, {/var*}, {.var*}, {;var*}, {?var*}, {&var*}) generate patterns containing nested unbounded quantifiers. These patterns exhibit O(2^n) time complexity when matched against malicious input.

  2. Multi-variable patterns: Templates using multiple variables with the + or # operators (e.g., {+v1,v2,v3}) generate patterns with O(n^k) complexity. The vulnerability arises because the comma separator is included within the matched character class, causing ambiguous backtracking across k variables.

Root Cause

The root cause lies in how Addressable constructs regular expressions for URI template matching. The library generates patterns with nested quantifiers and overlapping character classes without implementing safeguards against pathological backtracking scenarios. When the regex engine attempts to match these patterns against carefully crafted input strings, it explores an exponential number of backtracking paths before failing or succeeding.

Attack Vector

An attacker can exploit this vulnerability by sending HTTP requests or other input containing maliciously crafted URIs to any application that uses Addressable's URI template matching functionality. The attack is network-based and requires no authentication or user interaction. A single malicious request can cause the target application to consume excessive CPU resources while the regex engine processes the pathological input, effectively creating a denial of service condition.

The vulnerability is particularly dangerous in web application contexts where URI template matching may be performed on untrusted user input, such as routing systems or API endpoints that validate incoming request URIs against template patterns.

Detection Methods for CVE-2026-35611

Indicators of Compromise

  • Abnormally high CPU utilization on application servers processing URI requests
  • Application threads stuck in regex matching operations for extended periods
  • Request timeouts and service unavailability correlating with specific URI patterns
  • Memory consumption spikes associated with backtracking state storage

Detection Strategies

  • Monitor application response times for unusual latency patterns on URI-processing endpoints
  • Implement application performance monitoring (APM) to detect regex-related CPU anomalies
  • Review application dependencies for Addressable library versions between 2.3.0 and 2.8.x
  • Audit codebase for usage of URI template patterns with explode modifiers or multi-variable operators

Monitoring Recommendations

  • Configure alerting on sustained CPU utilization exceeding baseline thresholds
  • Implement request timeout enforcement at the application and load balancer layers
  • Deploy rate limiting on endpoints that process user-supplied URI input
  • Enable thread dump collection for diagnosing stuck regex operations

How to Mitigate CVE-2026-35611

Immediate Actions Required

  • Upgrade Addressable library to version 2.9.0 or later immediately
  • Audit all applications for Addressable dependency usage via Gemfile.lock or bundler
  • Implement request timeout limits to bound maximum processing time per request
  • Consider input validation to reject abnormally long or complex URI strings before template matching

Patch Information

The vulnerability is fixed in Addressable version 2.9.0. Organizations should update their Gemfile to specify gem 'addressable', '>= 2.9.0' and run bundle update addressable to apply the fix. For additional details, consult the GitHub Security Advisory.

Workarounds

  • Implement strict input length limits on URIs processed through Addressable templates
  • Deploy Web Application Firewall (WAF) rules to reject requests with suspicious URI patterns
  • Add request timeout enforcement at the application layer to limit regex processing time
  • Consider switching to Ruby's standard library URI implementation for simple parsing needs where template features are not required
bash
# Configuration example - Update Gemfile
# Specify minimum version to enforce patched release
gem 'addressable', '>= 2.9.0'

# Then update the dependency
bundle update addressable

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAddressable

  • 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-1333
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2021-32740: Addressable URI Template 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