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

CVE-2026-28674: xiaoheiFS RCE Vulnerability

CVE-2026-28674 is a remote code execution vulnerability in xiaoheiFS that allows attackers to upload and execute malicious files via a hardcoded password. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-28674 Overview

CVE-2026-28674 is an unrestricted file upload vulnerability in xiaoheiFS, a self-hosted financial and operational system designed for cloud service businesses. The vulnerability exists in versions up to and including 0.3.15 and allows authenticated administrators to upload arbitrary files to the plugins/payment/ directory through the AdminPaymentPluginUpload endpoint. A background file watcher service (StartWatcher) scans this directory every 5 seconds, and when it detects a new executable, it runs the file immediately—resulting in remote code execution on the host system.

Critical Impact

Authenticated administrators can achieve full remote code execution on the server by uploading a malicious executable that is automatically executed by the background watcher service.

Affected Products

  • xiaoheiFS versions up to and including 0.3.15

Discovery Timeline

  • 2026-03-18 - CVE-2026-28674 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-28674

Vulnerability Analysis

This vulnerability is classified as CWE-434 (Unrestricted Upload of File with Dangerous Type). The AdminPaymentPluginUpload endpoint lacks proper file validation, accepting any file type regardless of content or extension. The only authentication mechanism is a hardcoded password (qweasd123456), which provides minimal security.

The critical flaw is compounded by the StartWatcher background service, which operates on a 5-second polling interval to detect new files in the plugins/payment/ directory. When a new executable is detected, it is immediately executed with the same privileges as the xiaoheiFS application. This design creates a dangerous execution pipeline that converts a file upload vulnerability into guaranteed remote code execution.

Root Cause

The root cause is a combination of two security failures: insufficient file upload validation in the AdminPaymentPluginUpload endpoint, and an insecure automated execution mechanism in the StartWatcher service. The endpoint only validates against a hardcoded password and completely ignores file content, extension, and type. The background watcher then blindly executes any new executable it finds, without signature verification or sandboxing.

Attack Vector

The attack is network-based and requires high privileges (administrator access). An attacker with knowledge of the hardcoded password can upload a malicious executable file to the plugins/payment/ directory via the AdminPaymentPluginUpload endpoint. Within 5 seconds, the StartWatcher service detects the new file and executes it, granting the attacker code execution on the target server. The hardcoded password significantly lowers the barrier to exploitation, as it is publicly documented and cannot be changed by administrators.

Detection Methods for CVE-2026-28674

Indicators of Compromise

  • Unexpected files appearing in the plugins/payment/ directory, particularly executable files not part of legitimate payment plugins
  • Process execution events originating from the xiaoheiFS application with unusual command-line arguments or spawning unfamiliar child processes
  • Network authentication attempts to the AdminPaymentPluginUpload endpoint, especially from external or unknown IP addresses

Detection Strategies

  • Monitor HTTP POST requests to the AdminPaymentPluginUpload endpoint for suspicious file uploads
  • Implement file integrity monitoring on the plugins/payment/ directory to detect unauthorized file additions
  • Analyze process trees to identify unexpected executables spawned by the xiaoheiFS service

Monitoring Recommendations

  • Deploy endpoint detection and response (EDR) solutions to monitor for unusual process execution patterns associated with the xiaoheiFS application
  • Configure web application firewalls (WAF) to inspect and log traffic to administrative upload endpoints
  • Establish baseline behavior for the StartWatcher service and alert on deviations

How to Mitigate CVE-2026-28674

Immediate Actions Required

  • Upgrade xiaoheiFS to version 4.0.0 or later, which addresses this vulnerability
  • If immediate upgrade is not possible, restrict network access to the administrative endpoints at the firewall or reverse proxy level
  • Monitor the plugins/payment/ directory for any unauthorized file additions and remove suspicious files immediately

Patch Information

Version 4.0.0 of xiaoheiFS fixes this vulnerability. Review the GitHub Security Advisory for complete patch details and upgrade instructions.

Workarounds

  • Block external access to the AdminPaymentPluginUpload endpoint using firewall rules or reverse proxy configuration
  • Disable or stop the StartWatcher service if payment plugin functionality is not required
  • Implement additional authentication layers (such as IP allowlisting or multi-factor authentication) in front of administrative endpoints

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechXiaoheifs

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-28673: xiaoheiFS Plugin RCE 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