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-40882

CVE-2026-40882: OpenRemote XXE Vulnerability

CVE-2026-40882 is an XML external entity vulnerability in OpenRemote IoT platform that enables authenticated attackers to disclose server files and perform SSRF attacks. This article covers technical details, affected versions, and mitigation.

Updated: May 14, 2026

CVE-2026-40882 Overview

CVE-2026-40882 is an XML External Entity (XXE) vulnerability [CWE-611] in OpenRemote, an open-source Internet of Things (IoT) platform. The flaw resides in the Velbus asset import path, which parses attacker-controlled XML without explicit XXE hardening. Authenticated users with access to the import endpoint can trigger external entity resolution. Successful exploitation enables server-side file disclosure and Server-Side Request Forgery (SSRF). Targeted files must be smaller than 1023 characters. OpenRemote version 1.22.0 remediates the issue.

Critical Impact

Authenticated attackers can read local server files and pivot to internal network resources through SSRF via the Velbus XML import endpoint.

Affected Products

  • OpenRemote versions prior to 1.22.0
  • OpenRemote Velbus asset import functionality
  • Deployments exposing the import endpoint to authenticated users

Discovery Timeline

  • 2026-04-22 - CVE-2026-40882 published to the National Vulnerability Database (NVD)
  • 2026-04-24 - Last updated in NVD database

Technical Details for CVE-2026-40882

Vulnerability Analysis

The vulnerability stems from an unsafe XML parser configuration in the Velbus asset import workflow. The parser accepts user-supplied XML and resolves external entities by default. An authenticated user submits a crafted XML document referencing external SYSTEM entities. The parser fetches the referenced resource and embeds its content into the parsed document.

This behavior enables two primary attack outcomes. First, attackers can disclose files readable by the OpenRemote service account, limited to content under 1023 characters. Second, attackers can coerce the server to issue outbound HTTP, FTP, or other protocol requests, achieving SSRF against internal services.

The vulnerability requires authentication and low attack complexity. Confidentiality impact is high, while integrity and availability impacts are limited.

Root Cause

The Velbus import code path uses a default XML parser without disabling Document Type Definition (DTD) processing or external entity resolution. The parser honors SYSTEM and PUBLIC identifiers within <!ENTITY> declarations. OpenRemote did not apply hardening flags such as FEATURE_SECURE_PROCESSING or disable external general entities before parsing untrusted input.

Attack Vector

An authenticated attacker submits a malicious XML payload to the Velbus asset import endpoint. The payload defines an external entity pointing to a local file path or internal URL. When the parser resolves the entity, the returned data is reflected in error responses or embedded asset fields. The attacker collects disclosed file contents or observes side effects of internal requests issued by the server.

The vulnerability is described in the GitHub Security Advisory GHSA-g24f-mgc3-jwwc. No public proof-of-concept code is currently available.

Detection Methods for CVE-2026-40882

Indicators of Compromise

  • Unexpected HTTP requests to the Velbus asset import endpoint from authenticated user sessions
  • Outbound DNS or HTTP requests from the OpenRemote server to attacker-controlled domains
  • XML payloads in request bodies containing <!ENTITY or SYSTEM declarations
  • Server-side log entries referencing failed file reads or unusual file://, http://, or ftp:// URI access

Detection Strategies

  • Inspect application logs for XML imports containing DOCTYPE declarations or external entity references
  • Monitor egress network traffic from OpenRemote hosts for connections to unexpected internal or external destinations
  • Alert on authenticated API calls to Velbus import paths from unusual user accounts or IP addresses
  • Correlate import endpoint usage with subsequent file system access patterns on the host

Monitoring Recommendations

  • Enable verbose audit logging for the Velbus import endpoint and retain logs for forensic review
  • Deploy network sensors to capture outbound traffic originating from the OpenRemote application server
  • Track changes in authenticated user behavior, particularly accounts with import privileges
  • Review web application firewall (WAF) logs for blocked XML payloads referencing external entities

How to Mitigate CVE-2026-40882

Immediate Actions Required

  • Upgrade OpenRemote to version 1.22.0 or later, which disables external entity resolution in the Velbus import path
  • Restrict access to the Velbus asset import endpoint to trusted administrative accounts only
  • Audit existing user accounts with import privileges and remove unnecessary access
  • Review server file system permissions to limit data readable by the OpenRemote service account

Patch Information

OpenRemote released version 1.22.0 to address CVE-2026-40882. The fix hardens the XML parser used by the Velbus import functionality to reject external entity resolution. Refer to the OpenRemote GitHub Security Advisory for upgrade guidance and release notes.

Workarounds

  • Block access to the Velbus asset import endpoint at the reverse proxy or WAF layer until patching is complete
  • Apply WAF rules that reject XML requests containing <!DOCTYPE or <!ENTITY declarations
  • Run OpenRemote under a low-privilege service account with minimal file system read permissions
  • Segment the OpenRemote host from sensitive internal services to limit SSRF impact
bash
# Example WAF rule (ModSecurity) to block XXE payloads to the import endpoint
SecRule REQUEST_URI "@contains /velbus/import" \
  "id:1040882,phase:2,deny,status:403,\
  chain,msg:'Block potential XXE in OpenRemote Velbus import'"
  SecRule REQUEST_BODY "@rx (?i)<!(DOCTYPE|ENTITY)" "t:none"

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

  • Vulnerability Details
  • TypeXXE

  • Vendor/TechOpenremote

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-611
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41166: OpenRemote Privilege Escalation Flaw

  • CVE-2026-39842: OpenRemote IoT Platform 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