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

CVE-2026-7584: Zhinst Labone Q RCE Vulnerability

CVE-2026-7584 is a remote code execution flaw in Zhinst Labone Q's deserialization framework that allows attackers to execute arbitrary code through malicious experiment files. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-7584 Overview

CVE-2026-7584 is an insecure deserialization vulnerability [CWE-502] in the Zhinst LabOne Q quantum computing software framework. The flaw resides in the serialization framework's import_cls class-loading mechanism, which dynamically imports and instantiates Python classes during deserialization. The mechanism accepts arbitrary fully-qualified class names from serialized data without validating the target class or restricting which modules can be imported.

An attacker can craft a malicious experiment file that triggers instantiation of arbitrary Python classes with attacker-controlled constructor arguments. Successful exploitation results in arbitrary code execution under the privileges of the user running the Python process.

Critical Impact

Loading a crafted LabOne Q experiment file shared for collaboration or support purposes results in arbitrary code execution in the victim's Python environment.

Affected Products

  • Zhinst LabOne Q (versions prior to the fix)
  • Zhinst LabOne Q 26.4.0 beta1 through beta5
  • Component identifier: zhinst:labone_q

Discovery Timeline

  • 2026-05-01 - CVE-2026-7584 published to NVD
  • 2026-05-04 - Last updated in NVD database

Technical Details for CVE-2026-7584

Vulnerability Analysis

The LabOne Q serialization framework deserializes experiment files that contain references to Python classes by their fully-qualified names. During deserialization, the import_cls helper resolves these names, imports the corresponding modules, and instantiates the class with constructor arguments drawn from the serialized payload.

Because the framework performs no allow-list check on the target class and no restriction on the module namespace, any importable Python class becomes a candidate for instantiation. Constructor arguments are also taken directly from the serialized data, giving the attacker control over both the gadget chain and its parameters. The vulnerability is categorized as deserialization of untrusted data [CWE-502].

Root Cause

The root cause is the absence of validation in the dynamic class-loading routine. The deserializer trusts the embedded class identifier and constructor argument tuple without enforcing a whitelist of permitted classes, a sandbox boundary, or a schema. Any Python module reachable on the interpreter's sys.path can be loaded, including modules whose constructors trigger side effects such as subprocess.Popen or os.system.

Attack Vector

Exploitation requires user interaction. A victim must open a crafted experiment file using LabOne Q's deserialization functions. Realistic delivery scenarios include experiment files shared for collaboration, files distributed through support channels, or files retrieved from compromised internal repositories. The attack vector is local because the malicious file must be processed by the victim's Python interpreter.

Upon load, the deserializer resolves the attacker-supplied class name, imports the module, and invokes the constructor with the embedded arguments. This yields arbitrary code execution within the user's session, leading to high impact on confidentiality, integrity, and availability of the local system.

The vulnerability mechanism follows the classic Python deserialization gadget pattern. See the ZHI Security Advisory 2026-002 for vendor technical details.

Detection Methods for CVE-2026-7584

Indicators of Compromise

  • Unexpected child processes spawned by the Python interpreter hosting LabOne Q, particularly shells, curl, wget, or scripting hosts.
  • LabOne Q experiment files received from external or untrusted sources, especially those modified outside expected collaboration workflows.
  • Outbound network connections initiated by the Python process shortly after an experiment file is opened.
  • Filesystem writes by the LabOne Q process to directories outside its working data paths.

Detection Strategies

  • Inspect serialized LabOne Q experiment files for class references that point to modules outside the laboneq package namespace.
  • Hunt for process trees in which python or LabOne Q workflows spawn cmd.exe, powershell.exe, /bin/sh, or bash.
  • Alert on Python processes loading sensitive modules such as subprocess, socket, or ctypes immediately after a file-open event in research workstation telemetry.

Monitoring Recommendations

  • Enable command-line and process-creation auditing on workstations and lab systems running LabOne Q.
  • Centralize Python interpreter telemetry, including loaded modules and child processes, in a SIEM for correlation against experiment file activity.
  • Track ingress of .qcdata, .json, or other LabOne Q experiment artifacts from email, chat, and shared drives.

How to Mitigate CVE-2026-7584

Immediate Actions Required

  • Upgrade LabOne Q to a fixed release as identified in ZHI Security Advisory 2026-002.
  • Stop opening experiment files received from untrusted or unverified sources until the patch is deployed.
  • Inventory systems running affected LabOne Q versions, including the 26.4.0 beta1 through beta5 builds, and prioritize them for remediation.
  • Restrict write access to shared directories that store LabOne Q experiment files to reduce tampering risk.

Patch Information

Zurich Instruments has published a fix in ZHI Security Advisory 2026-002. The fix introduces validation in the import_cls class-loading mechanism so that only approved classes within the LabOne Q namespace can be instantiated during deserialization. Apply the vendor-supplied update on every host that loads LabOne Q experiment files.

Workarounds

  • Open experiment files only inside isolated, non-privileged user accounts or disposable virtual machines until the patch is applied.
  • Validate the origin and integrity of experiment files using out-of-band channels before loading them.
  • Run LabOne Q under a constrained Python environment with minimal third-party packages on sys.path to limit available gadget classes.
  • Block experiment files from arriving over untrusted email or external file-sharing services through email gateway and DLP rules.
bash
# Verify installed LabOne Q version and upgrade to the fixed release
pip show laboneq | grep -i version
pip install --upgrade laboneq

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechZhinst Labone Q

  • SeverityHIGH

  • CVSS Score8.4

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:A/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Vendor Resources
  • ZHI Security Advisory 2026-002
  • 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