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-2026-22785

CVE-2026-22785: Orval OpenAPI Client Generator RCE Flaw

CVE-2026-22785 is a remote code execution vulnerability in Orval, a TypeScript client generator for OpenAPI specifications. Attackers can inject code via unsanitized summary fields. Learn about affected versions and fixes.

Updated: January 22, 2026

CVE-2026-22785 Overview

orval is a popular tool that generates type-safe JavaScript/TypeScript clients from OpenAPI v3 or Swagger v2 specifications. A critical command injection vulnerability exists in versions prior to 7.18.0 where the MCP (Model Context Protocol) server generation logic fails to properly validate or escape the summary field from OpenAPI specifications. This allows attackers to craft malicious OpenAPI specifications that break out of string literals and inject arbitrary code during client generation.

Critical Impact

Attackers can achieve arbitrary code execution by supplying a malicious OpenAPI specification with a specially crafted summary field, potentially compromising development environments and CI/CD pipelines that use orval for code generation.

Affected Products

  • orval versions prior to 7.18.0
  • Applications using orval MCP server generation with untrusted OpenAPI specifications
  • CI/CD pipelines processing external OpenAPI specifications through orval

Discovery Timeline

  • 2026-01-12 - CVE CVE-2026-22785 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2026-22785

Vulnerability Analysis

This vulnerability is classified as CWE-77 (Command Injection). The orval tool's MCP server generation functionality processes OpenAPI specification files and uses the summary field content in string manipulation operations without adequate input validation or output encoding.

When orval generates code from an OpenAPI specification, it directly incorporates the summary field value into the generated output. Because the string manipulation lacks proper escaping, an attacker can craft a summary field containing string-terminating characters followed by malicious code. This effectively allows the attacker to "break out" of the intended string context and inject arbitrary JavaScript/TypeScript code that will be included in the generated output.

The attack is particularly dangerous in automated environments where OpenAPI specifications may be fetched from external sources or when developers process specifications from untrusted parties.

Root Cause

The root cause is improper input validation in the MCP server generation logic. The code directly concatenates the summary field from OpenAPI specifications into generated code templates without sanitizing or escaping special characters that could alter the syntactic structure of the output. This represents a classic injection vulnerability where user-controlled input is mixed with code without proper separation.

Attack Vector

The attack is network-exploitable and requires no authentication or user interaction. An attacker creates a malicious OpenAPI v3 or Swagger v2 specification file containing a specially crafted summary field. When a developer or automated system processes this specification using a vulnerable version of orval with MCP server generation, the injected code is included in the generated output.

The injected code executes in the context of wherever the generated code runs, potentially allowing attackers to:

  • Execute arbitrary commands on developer workstations
  • Compromise CI/CD build environments
  • Establish persistence through generated application code
  • Exfiltrate sensitive data from build environments

For detailed technical analysis, see the GitHub Security Advisory.

Detection Methods for CVE-2026-22785

Indicators of Compromise

  • Unexpected code patterns in orval-generated TypeScript/JavaScript files
  • OpenAPI specification files with unusual characters in summary fields (e.g., backticks, quotes, semicolons followed by code-like structures)
  • Anomalous process execution originating from generated client code
  • Build logs showing unexpected command execution during orval code generation

Detection Strategies

  • Audit all OpenAPI specifications for suspicious content in the summary field before processing with orval
  • Implement static code analysis on generated output to detect injected code patterns
  • Monitor build environments for unexpected network connections or process spawning during code generation
  • Review orval-generated files for any code that does not match expected patterns

Monitoring Recommendations

  • Enable verbose logging during orval code generation to capture specification details
  • Implement file integrity monitoring on generated code directories to detect unexpected modifications
  • Set up alerts for unusual process activity during CI/CD pipeline execution
  • Regularly audit OpenAPI specification sources and their integrity

How to Mitigate CVE-2026-22785

Immediate Actions Required

  • Upgrade orval to version 7.18.0 or later immediately
  • Audit all OpenAPI specifications currently used in projects for malicious content
  • Review recently generated code for any signs of injection
  • Restrict orval processing to trusted OpenAPI specification sources only
  • Implement input validation for OpenAPI specifications before processing

Patch Information

The vulnerability is fixed in orval version 7.18.0. The fix implements proper validation and escaping of the summary field during MCP server generation. The patch can be reviewed in the GitHub commit.

To update orval:

bash
# Using npm
npm update orval@7.18.0

# Using yarn
yarn upgrade orval@7.18.0

# Using pnpm
pnpm update orval@7.18.0

Workarounds

  • Only process OpenAPI specifications from trusted, verified sources until upgrade is possible
  • Implement a pre-processing step to sanitize summary fields in OpenAPI specifications
  • Manually review all orval-generated code before execution or deployment
  • Isolate orval code generation in sandboxed environments with limited permissions
  • Consider temporarily disabling MCP server generation if not required
bash
# Configuration example
# Verify orval version before use
npx orval --version

# If using version < 7.18.0, upgrade immediately
npm install orval@latest

# Validate OpenAPI specs before processing (example using spectral)
npx @stoplight/spectral-cli lint ./api-spec.yaml

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOrval

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-77
  • Technical References
  • GitHub Commit Detail

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25141: Orval OpenAPI RCE Vulnerability

  • CVE-2026-24132: Orval TypeScript Client RCE Vulnerability

  • CVE-2026-23947: Orval OpenAPI Client RCE 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