Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-0716

CVE-2025-0716: AngularJS Content Spoofing Vulnerability

CVE-2025-0716 is a content spoofing vulnerability in AngularJS caused by improper sanitization of SVG image attributes. Attackers can bypass image source restrictions to manipulate content. Learn about technical details and risks.

Updated: January 22, 2026

CVE-2025-0716 Overview

CVE-2025-0716 is a Missing Input Sanitization vulnerability affecting all versions of AngularJS. The vulnerability exists due to improper sanitization of the href and xlink:href attributes within <image> SVG elements. This flaw allows attackers to bypass common image source restrictions, potentially leading to Content Spoofing attacks and negatively impacting application performance through the use of oversized or slow-loading images.

Critical Impact

AngularJS has reached End-of-Life status and will not receive security updates to address this vulnerability. Organizations still using AngularJS must migrate to a supported framework or implement alternative mitigations.

Affected Products

  • AngularJS (all versions)
  • Applications and websites built using AngularJS framework
  • Web applications utilizing AngularJS SVG rendering capabilities

Discovery Timeline

  • 2025-04-29 - CVE-2025-0716 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-0716

Vulnerability Analysis

This vulnerability stems from insufficient input validation in AngularJS's HTML sanitization mechanism. When processing SVG content, AngularJS fails to properly sanitize the href and xlink:href attributes specifically within <image> elements. While AngularJS implements sanitization for many HTML attributes to prevent injection attacks, the SVG namespace attributes used for image references were overlooked, creating a bypass vector.

The exploitation path requires network access and involves crafting malicious SVG markup that includes <image> elements with attacker-controlled href or xlink:href values. When this content is rendered by an AngularJS application, the unsanitized URLs are processed, allowing attackers to reference external resources that should normally be blocked by the application's content security policies.

Root Cause

The root cause is classified as CWE-791 (Incomplete Filtering of Special Elements). AngularJS's sanitization routines do not adequately filter the href and xlink:href attributes when they appear within SVG <image> elements. This creates an inconsistency between the expected security behavior and the actual implementation, where these specific attribute combinations slip through the sanitization process unfiltered.

Attack Vector

The attack requires an attacker to inject SVG content containing malicious <image> elements into an AngularJS application that processes user-supplied HTML or SVG content. The attacker crafts the href or xlink:href attribute to point to external resources of their choosing.

Successful exploitation enables Content Spoofing attacks where legitimate application imagery can be replaced with attacker-controlled content. Additionally, attackers can degrade application performance by referencing extremely large images or resources hosted on slow servers, causing denial of service conditions for end users.

A live demonstration of this vulnerability is available at the CodePen Security Demonstration created by HeroDevs.

Detection Methods for CVE-2025-0716

Indicators of Compromise

  • Presence of <image> SVG elements with unusual or external href or xlink:href values in application content
  • Unexpected external resource requests originating from SVG content rendering
  • Application performance degradation tied to SVG image loading operations
  • User reports of incorrect or unexpected images displayed within the application

Detection Strategies

  • Monitor web application logs for requests to unexpected external image resources originating from SVG rendering contexts
  • Implement Content Security Policy (CSP) violation reporting to detect attempts to load unauthorized image sources
  • Deploy web application firewall rules to detect SVG content containing suspicious href or xlink:href patterns
  • Conduct code reviews to identify locations where user-supplied SVG content is rendered without additional sanitization

Monitoring Recommendations

  • Enable CSP reporting endpoints to capture policy violations related to image source restrictions
  • Configure application monitoring to alert on unusual external resource loading patterns
  • Audit AngularJS applications for components that accept and render user-supplied SVG content
  • Track client-side performance metrics to identify potential resource exhaustion attacks

How to Mitigate CVE-2025-0716

Immediate Actions Required

  • Migrate from AngularJS to Angular or another actively maintained framework as AngularJS is End-of-Life
  • Implement server-side SVG sanitization before content reaches AngularJS applications
  • Deploy Content Security Policy headers with strict img-src directives to limit allowed image sources
  • Review and audit all code paths where user-supplied SVG content is accepted and rendered

Patch Information

No official patch is available for this vulnerability. AngularJS has reached End-of-Life status and will not receive security updates. The HeroDevs CVE-2025-0716 Listing provides additional details. Debian LTS users should consult the Debian LTS Announcement for distribution-specific guidance.

Workarounds

  • Implement custom SVG sanitization that explicitly removes or validates href and xlink:href attributes on <image> elements before AngularJS processing
  • Use a dedicated SVG sanitization library such as DOMPurify with appropriate configuration to filter SVG image references
  • Restrict or disable the acceptance of user-supplied SVG content entirely where possible
  • Implement strict Content Security Policy headers to limit which domains can serve image content
bash
# Example Content Security Policy header configuration
# Add to web server configuration (Apache/Nginx) or application response headers
Content-Security-Policy: default-src 'self'; img-src 'self' https://trusted-cdn.example.com; script-src 'self'; style-src 'self' 'unsafe-inline'

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechAngularjs

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-791
  • Technical References
  • CodePen Security Demonstration

  • HeroDevs CVE-2025-0716 Listing

  • Debian LTS Announcement
  • Related CVEs
  • CVE-2026-41468: Beghelli Sicuro24 SicuroWeb RCE Vulnerability

  • CVE-2024-8373: AngularJS srcset XSS Vulnerability

  • CVE-2020-7676: AngularJS XSS Vulnerability

  • CVE-2023-26117: AngularJS $resource Service ReDoS 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