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
    • 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-2023-26116

CVE-2023-26116: AngularJS Regular Expression DoS Vulnerability

CVE-2023-26116 is a Regular Expression Denial of Service flaw in AngularJS affecting versions from 1.2.21 onwards. Attackers can exploit the angular.copy() function with crafted input. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 11, 2026

CVE-2023-26116 Overview

CVE-2023-26116 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting AngularJS versions from 1.2.21. The vulnerability exists in the angular.copy() utility function due to the usage of an insecure regular expression pattern. Attackers can exploit this flaw by providing carefully-crafted large input strings, which can result in catastrophic backtracking and cause the application to become unresponsive.

Critical Impact

Exploitation of this vulnerability can cause denial of service conditions in web applications using the vulnerable angular.copy() function, potentially leading to application unavailability and degraded user experience.

Affected Products

  • AngularJS versions 1.2.21 and later
  • Fedora 38 (bundled AngularJS packages)
  • WebJars packages containing vulnerable AngularJS versions

Discovery Timeline

  • March 30, 2023 - CVE-2023-26116 published to NVD
  • November 20, 2025 - Last updated in NVD database

Technical Details for CVE-2023-26116

Vulnerability Analysis

This vulnerability is classified as CWE-1333 (Inefficient Regular Expression Complexity). The angular.copy() function in AngularJS utilizes a regular expression that is susceptible to catastrophic backtracking when processing maliciously crafted input. ReDoS vulnerabilities occur when a regular expression's evaluation time grows exponentially with input size, allowing an attacker to consume excessive CPU resources with relatively small but specifically structured payloads.

The attack is network-accessible and requires no authentication or user interaction, making it particularly concerning for publicly facing web applications. While the vulnerability does not impact confidentiality or integrity, it can effectively render the application unavailable to legitimate users.

Root Cause

The root cause of this vulnerability lies in the inefficient regular expression pattern used within the angular.copy() utility function. The regex contains patterns that create multiple possible matching paths, leading to exponential time complexity when the regex engine attempts to match against carefully constructed input strings. This is a common issue in JavaScript applications where regex patterns with nested quantifiers or overlapping alternatives are used without proper optimization.

Attack Vector

The attack vector is network-based, allowing remote attackers to target vulnerable applications over the internet. An attacker can craft a malicious payload containing strings specifically designed to trigger the worst-case behavior of the vulnerable regular expression. When the angular.copy() function processes this input, the regex engine enters a state of catastrophic backtracking, consuming CPU cycles and potentially blocking the JavaScript event loop.

The exploitation does not require any privileges or authentication, and no user interaction is needed. The attacker simply needs to deliver the malicious input to any application endpoint that passes user-controlled data through the angular.copy() function. A proof-of-concept demonstrating this vulnerability is available on StackBlitz.

Detection Methods for CVE-2023-26116

Indicators of Compromise

  • Abnormally high CPU utilization on web application servers without corresponding increase in legitimate traffic
  • Application response time degradation or timeouts when processing specific input patterns
  • Browser or Node.js processes becoming unresponsive during AngularJS operations
  • Repeated requests containing unusually long or repetitive string patterns targeting application endpoints

Detection Strategies

  • Implement application performance monitoring (APM) to detect unusual CPU spikes correlated with specific request patterns
  • Deploy Web Application Firewall (WAF) rules to identify and block requests containing known ReDoS payload patterns
  • Use static code analysis tools to scan for usage of angular.copy() with untrusted user input
  • Monitor JavaScript execution times and set alerting thresholds for abnormal function execution durations

Monitoring Recommendations

  • Configure real-time alerting for sustained CPU utilization above baseline thresholds on frontend and API servers
  • Implement request timeout mechanisms to terminate long-running operations that may indicate ReDoS exploitation
  • Review application logs for patterns of failed or timed-out requests that could indicate exploitation attempts
  • Use browser developer tools or server-side profiling to identify performance bottlenecks in AngularJS applications

How to Mitigate CVE-2023-26116

Immediate Actions Required

  • Audit all applications using AngularJS to identify instances where angular.copy() processes user-controlled input
  • Implement input validation and length restrictions on data passed to the angular.copy() function
  • Consider migrating from AngularJS (which reached end-of-life in December 2021) to a modern, actively maintained framework such as Angular
  • Apply available patches from Linux distribution repositories (Fedora, Debian) if using packaged AngularJS versions

Patch Information

Fedora and Debian have released security advisories addressing this vulnerability in their packaged versions of AngularJS. Refer to the Fedora Package Announcements and Debian LTS Security Announcement for specific patch versions and installation instructions.

For applications using npm or WebJars packages, consult the Snyk Vulnerability Reports for detailed remediation guidance and affected package versions.

Workarounds

  • Implement server-side input validation to restrict the length and character patterns of data before it reaches AngularJS functions
  • Add request timeout mechanisms at the load balancer or reverse proxy level to prevent long-running requests from consuming resources
  • Use rate limiting to reduce the impact of repeated exploitation attempts from a single source
  • Consider wrapping angular.copy() calls with try-catch blocks and execution time limits where direct patching is not feasible
bash
# Example: Check AngularJS version in your project
grep -r "angular" package.json package-lock.json | grep version

# Example: Update Fedora packages
sudo dnf update angularjs

# Example: Check for vulnerable dependencies using npm
npm audit

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAngularjs

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.25%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-1333
  • Technical References
  • Fedora Package Announcement

  • Fedora Package Announcement

  • Snyk Java Vulnerability Report

  • Snyk Java Vulnerability Report

  • Snyk Java Vulnerability Report

  • Snyk JS Vulnerability Report

  • StackBlitz AngularJS Vulnerability PoC

  • Debian LTS Security Announcement
  • Related CVEs
  • CVE-2023-26117: AngularJS $resource Service ReDoS Vulnerability

  • CVE-2022-25844: AngularJS ReDoS Vulnerability

  • CVE-2024-21490: Angular.js ng-srcset DoS Vulnerability

  • CVE-2024-8373: AngularJS srcset XSS Vulnerability
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