A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-42097

CVE-2026-42097: Sparx Pro Cloud Server SQLi Vulnerability

CVE-2026-42097 is a SQL injection flaw in Sparx Pro Cloud Server allowing unauthenticated attackers to execute SQL queries by bypassing authentication. This post covers technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-42097 Overview

CVE-2026-42097 is an authentication bypass vulnerability in Sparx Pro Cloud Server. The server enforces authentication based on the requested URL, specifically inspecting the model query parameter. Attackers can omit the model query parameter from the URL and instead place the model name inside the binary blob of a POST request. This routing inconsistency permits unauthenticated SQL query execution against the backend database. The flaw is classified under [CWE-639: Authorization Bypass Through User-Controlled Key].

Critical Impact

Unauthenticated remote attackers can execute SQL queries against Sparx Pro Cloud Server, exposing modeling data and supporting credentials stored in the database.

Affected Products

  • Sparx Pro Cloud Server version 6.1 (build 167) and below (confirmed)
  • Earlier versions of Sparx Pro Cloud Server (untested, potentially vulnerable)
  • Deployments exposing the Pro Cloud Server HTTP interface to untrusted networks

Discovery Timeline

  • 2026-05-19 - CVE-2026-42097 published to the National Vulnerability Database
  • 2026-05-19 - Last updated in NVD database

Technical Details for CVE-2026-42097

Vulnerability Analysis

Sparx Pro Cloud Server exposes an HTTP interface that processes requests containing a serialized binary blob in the POST body. The authentication layer inspects the model parameter in the URL query string to determine whether a request requires credentials. When the parameter is present, the server enforces authentication against the corresponding model. When the parameter is absent from the URL, the authentication decision diverges from the request processing logic. The request handler still extracts the model name from the binary blob in the POST body and proceeds to execute SQL queries against that model. This split between authentication enforcement and request routing produces an authorization gap that grants attackers direct query access.

Root Cause

The root cause is inconsistent identifier resolution between the authentication middleware and the SQL execution path. The authentication layer relies solely on the URL query string, while the SQL execution layer accepts the same identifier from the request body. Both code paths trust the user-controlled value, but only one is bound to authentication checks.

Attack Vector

The vulnerability is exploitable over the network without credentials or user interaction. An attacker crafts a POST request to the Sparx Pro Cloud Server endpoint, omitting model from the query string while embedding the target model name and the SQL payload within the binary blob body. The server bypasses authentication, parses the blob, and executes the supplied SQL against the referenced model. No exploitation in the wild has been confirmed, and the vulnerability is not listed on the CISA Known Exploited Vulnerabilities catalog. Refer to the Sploit Tech analysis of Sparx Enterprise Architect PCS and the CERT Poland CVE Analysis for additional technical detail.

No verified proof-of-concept code has been released. Refer to the Efigo blog for further technical context.

Detection Methods for CVE-2026-42097

Indicators of Compromise

  • POST requests to Sparx Pro Cloud Server endpoints that lack the model query parameter but include a non-empty binary body
  • Unexpected SQL query patterns or schema enumeration originating from the Pro Cloud Server service account
  • Anonymous or unauthenticated sessions executing database operations that normally require an authenticated model context

Detection Strategies

  • Inspect web server and reverse proxy logs for POST requests to Pro Cloud Server URLs missing the model query parameter
  • Correlate Pro Cloud Server access logs with backend database query logs to identify unauthenticated callers triggering SQL execution
  • Apply signatures on web application firewalls to flag requests whose body contains model identifiers when the query string does not

Monitoring Recommendations

  • Enable verbose request logging on the Pro Cloud Server front-end, including full query strings and request sizes
  • Forward Pro Cloud Server and database telemetry to a central analytics platform for correlation and retention
  • Alert on bursts of failed or anomalous SQL statements tied to the Pro Cloud Server connection pool

How to Mitigate CVE-2026-42097

Immediate Actions Required

  • Restrict network access to Sparx Pro Cloud Server so that only trusted clients can reach the HTTP interface
  • Place the server behind an authenticated reverse proxy or VPN until a vendor patch is verified
  • Audit Pro Cloud Server and database logs for prior unauthenticated requests matching the attack pattern

Patch Information

The vendor was notified but did not respond with details of the vulnerability or a confirmed vulnerable version range. No fixed version has been published in the NVD record. Monitor the Sparx Systems Pro Cloud Server product page for vendor updates and apply any security release as soon as it becomes available.

Workarounds

  • Configure a reverse proxy to reject POST requests to Pro Cloud Server endpoints that omit the model query parameter
  • Enforce mutual TLS or network-layer authentication in front of Pro Cloud Server to deny anonymous traffic
  • Limit database account privileges used by Pro Cloud Server to reduce the impact of injected SQL
bash
# Example NGINX rule to block POST requests missing the 'model' query parameter
location /pcs/ {
    if ($request_method = POST) {
        if ($arg_model = "") {
            return 403;
        }
    }
    proxy_pass http://procloudserver_backend;
}

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechSparx Pro Cloud Server

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-639
  • Technical References
  • CERT Poland CVE Analysis

  • Efigo Blog on CVE-2026-42096

  • Sparx Systems Product Overview

  • Sploit Tech Article on Sparx PCS
  • Related CVEs
  • CVE-2026-42096: Sparx Pro Cloud Server SQLi Vulnerability

  • CVE-2025-15625: Sparx Pro Cloud Server SQLi Vulnerability

  • CVE-2026-42100: Sparx Pro Cloud Server DoS Vulnerability

  • CVE-2026-42099: Sparx Pro Cloud Server RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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