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-2025-14896

CVE-2025-14896: Vega SSRF Vulnerability in convert()

CVE-2025-14896 is an SSRF vulnerability in Vega's convert() function that allows attackers to send requests to arbitrary URLs and access sensitive data. This article covers technical details, affected versions, and mitigation.

Updated: May 11, 2026

CVE-2025-14896 Overview

CVE-2025-14896 is a server-side request forgery (SSRF) vulnerability in the Vega visualization grammar library. The flaw resides in the convert() function when safeMode is enabled and the spec variable is passed as an array. Insufficient sanitization allows an attacker to bypass the safe mode protection and craft a malicious Vega diagram specification. The crafted specification can force the renderer to issue requests to arbitrary URLs, including file:// paths on the local file system. Successful exploitation leads to exposure of sensitive information from the host environment. The vulnerability is tracked under CWE-552: Files or Directories Accessible to External Parties.

Critical Impact

Remote, unauthenticated attackers can read local files and reach internal network resources by submitting crafted Vega specifications to vulnerable services such as Kroki.

Affected Products

  • Kroki diagram rendering service consuming Vega specifications
  • Applications embedding Vega convert() with safeMode enabled and array-based specs
  • Downstream services rendering user-supplied Vega or Vega-Lite content

Discovery Timeline

  • 2025-12-18 - CVE-2025-14896 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-14896

Vulnerability Analysis

Vega exposes a convert() helper used to load data referenced inside a chart specification. When operators enable safeMode, the function is expected to restrict outbound data loads to trusted destinations. The check fails when the spec argument is supplied as an array rather than a single object. In that path, URL inputs are not validated against the safe mode allow list. An attacker who can submit a specification to a service such as Kroki therefore controls the destination of server-side fetches. The resulting confidentiality impact is high while integrity and availability are unaffected, consistent with a classic SSRF and local file disclosure pattern.

Root Cause

The root cause is incomplete input sanitization in the array-handling branch of convert(). Safe mode logic only inspects scalar spec inputs and does not recurse into array elements. Each entry in the array bypasses the URL filter, so attacker-controlled values flow directly into the data loader.

Attack Vector

Exploitation occurs over the network without authentication or user interaction. The attacker submits a Vega specification containing a data load directive whose URL points to an internal HTTP endpoint, cloud metadata service, or file:/// resource. The vulnerable server fetches the resource and returns its contents within the rendered diagram or error response. Reference patches are available in the Kroki commit notification.

// No verified public proof-of-concept code is available.
// The vulnerability is triggered by supplying an array-form Vega `spec`
// whose data loader URL points to a file:// or internal HTTP resource
// while `safeMode` is enabled.

Detection Methods for CVE-2025-14896

Indicators of Compromise

  • Outbound HTTP or file-scheme requests originating from Vega or Kroki processes to internal IP ranges, cloud metadata endpoints, or local paths.
  • Vega specifications submitted by clients that contain array-form spec payloads with url fields referencing file://, 127.0.0.1, 169.254.169.254, or internal hostnames.
  • Diagram render responses containing fragments of system files such as /etc/passwd or configuration data.

Detection Strategies

  • Inspect application logs for Vega convert() invocations where the spec parameter is an array and contains a url property.
  • Apply web application firewall rules that flag JSON request bodies containing file://, localhost, or RFC1918 addresses inside Vega/Vega-Lite payloads.
  • Correlate diagram service egress traffic against an allow list of approved data sources.

Monitoring Recommendations

  • Enable verbose request logging on Kroki and any service exposing Vega rendering to untrusted users.
  • Alert on Vega/Kroki processes opening local files outside their working directory or initiating connections to non-public IP space.
  • Track CWE-552 detections from static analysis across application repositories that import Vega.

How to Mitigate CVE-2025-14896

Immediate Actions Required

  • Upgrade Kroki and any embedded Vega runtime to a version that includes the fix from commit f31093c.
  • Restrict network egress from diagram-rendering hosts to a defined allow list, blocking access to metadata services and internal subnets.
  • Reject Vega specifications containing array-form spec values until patched, or strip url fields server-side.

Patch Information

The upstream fix is referenced in the Kroki GitHub commit. Operators running Kroki should rebuild containers from the patched commit or later. Applications that embed Vega directly must update to a Vega release that enforces safeMode checks across both object and array spec inputs.

Workarounds

  • Disable user-supplied Vega rendering paths until patched builds are deployed.
  • Run the diagram service in a network namespace without access to internal HTTP endpoints or cloud metadata services.
  • Mount the container filesystem read-only and remove access to sensitive paths such as /etc, /proc, and cloud credential files.
bash
# Example egress restriction with iptables for a Kroki container host
iptables -A OUTPUT -d 169.254.169.254 -j DROP
iptables -A OUTPUT -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-552
  • Technical References
  • GitHub Commit Notification
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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