Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-28427

CVE-2026-28427: OpenDeck Path Traversal Vulnerability

CVE-2026-28427 is a path traversal vulnerability in OpenDeck that allows attackers to read unauthorized files by exploiting improper path sanitization. This article covers technical details, affected versions, and fixes.

Published: March 6, 2026

CVE-2026-28427 Overview

CVE-2026-28427 is a Path Traversal vulnerability affecting OpenDeck, a Linux software application for managing Elgato Stream Deck devices. Prior to version 2.8.1, the service listening on port 57118 serves static files for installed plugins but fails to properly sanitize path components. By including ../ sequences in the request path, an attacker can traverse outside the intended directory and read any file that OpenDeck can access on the system.

Critical Impact

Attackers can exploit this vulnerability to read sensitive files on the system, potentially exposing credentials, configuration files, and other sensitive data accessible by the OpenDeck service.

Affected Products

  • OpenDeck versions prior to 2.8.1
  • Linux systems running vulnerable OpenDeck installations
  • Systems with OpenDeck service exposed on port 57118

Discovery Timeline

  • 2026-03-04 - CVE-2026-28427 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-28427

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal or Directory Traversal. The OpenDeck service hosts a web server on port 57118 that serves static files for installed plugins. The root cause lies in insufficient input validation when handling file path requests.

When the service receives a request for a file, it fails to properly sanitize path components before constructing the final file path. This allows an attacker to inject directory traversal sequences (../) into the request, escaping the intended plugin directory and accessing arbitrary files on the filesystem that the OpenDeck process has permissions to read.

Root Cause

The vulnerability stems from missing or inadequate path sanitization in the file serving logic. When handling requests for plugin static files, the application concatenates user-controlled path segments without validating that the resulting path remains within the intended directory. The lack of proper path canonicalization or directory containment checks enables traversal attacks.

Attack Vector

The attack is network-based and requires the attacker to send specially crafted HTTP requests to the OpenDeck service on port 57118. By including ../ sequences in the request path, an attacker can navigate up the directory tree and access files outside the plugin directory. For example, a request containing multiple ../ segments could potentially reach sensitive files such as /etc/passwd, configuration files, or application credentials.

The attack requires user interaction in some scenarios, as the service must be accessible to the attacker, either through local network access or if the port has been exposed externally. Successful exploitation could lead to information disclosure affecting confidentiality, with potential for further attacks based on exposed sensitive data.

Detection Methods for CVE-2026-28427

Indicators of Compromise

  • HTTP requests to port 57118 containing ../ or URL-encoded variants (%2e%2e%2f) in the path
  • Access log entries showing requests with unusual path patterns attempting to reach system files
  • Unexpected file access patterns originating from the OpenDeck process
  • Network traffic to port 57118 from unauthorized or external sources

Detection Strategies

  • Monitor HTTP access logs for requests containing directory traversal sequences such as ../, ..%2f, or %2e%2e/
  • Implement network-level detection rules to identify path traversal patterns in HTTP requests targeting port 57118
  • Use file integrity monitoring to detect unauthorized access to sensitive files outside the OpenDeck plugin directory
  • Deploy web application firewall rules to block requests with path traversal indicators

Monitoring Recommendations

  • Enable verbose logging for the OpenDeck service to capture all incoming HTTP requests
  • Configure network monitoring to alert on connections to port 57118 from untrusted networks
  • Set up file access auditing for sensitive system files to detect unauthorized reads
  • Implement alerting for anomalous file access patterns by the OpenDeck process

How to Mitigate CVE-2026-28427

Immediate Actions Required

  • Upgrade OpenDeck to version 2.8.1 or later immediately
  • Restrict network access to port 57118 using firewall rules to limit exposure to trusted hosts only
  • Review system logs for any evidence of exploitation attempts
  • Consider temporarily disabling the OpenDeck service until patching is complete if the service is exposed to untrusted networks

Patch Information

The vulnerability has been fixed in OpenDeck version 2.8.1. The patch implements proper path sanitization to prevent directory traversal attacks. Users should update to version 2.8.1 or later to remediate this vulnerability.

For detailed patch information, refer to the GitHub commit and the GitHub Security Advisory.

Workarounds

  • Use firewall rules to restrict access to port 57118 to localhost only if remote access is not required
  • Deploy a reverse proxy with path sanitization in front of the OpenDeck service
  • Run OpenDeck under a restricted user account with minimal file system permissions to limit the impact of potential exploitation
  • Consider network segmentation to isolate the system running OpenDeck from sensitive network resources
bash
# Example: Restrict port 57118 to localhost only using iptables
iptables -A INPUT -p tcp --dport 57118 -s 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp --dport 57118 -j DROP

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOpendeck

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:A/VC:H/VI:N/VA:N/SC:L/SI:L/SA:L/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS Vulnerability
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