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

CVE-2026-37430: qihang-wms File Upload RCE Vulnerability

CVE-2026-37430 is a remote code execution vulnerability in qihang-wms caused by arbitrary file upload in ShopOrderImportController.java. This article covers technical details, affected versions, impact, and mitigation steps.

Published: May 17, 2026

CVE-2026-37430 Overview

CVE-2026-37430 is an arbitrary file upload vulnerability in the ShopOrderImportController.java component of qihang-wms, a warehouse management system. The flaw affects commit 75c15a and allows remote attackers to execute arbitrary code by uploading a crafted file. The weakness maps to [CWE-434: Unrestricted Upload of File with Dangerous Type]. The application accepts uploaded files without validating their type or content, enabling attackers to place executable payloads on the server.

Critical Impact

Unauthenticated network attackers can upload malicious files to qihang-wms and achieve code execution on the host running the application.

Affected Products

  • qihang-wms commit 75c15a
  • ShopOrderImportController.java component
  • Deployments built from the vulnerable commit

Discovery Timeline

  • 2026-05-13 - CVE-2026-37430 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-37430

Vulnerability Analysis

The vulnerability resides in the shop order import handler implemented in ShopOrderImportController.java. The endpoint is designed to accept order data files for bulk import, but it does not enforce restrictions on file extension, MIME type, or content signature. Attackers can submit a request containing a server-side executable payload, such as a JSP or other web shell, instead of a legitimate import document.

Once the file is written to a location served by the application container, the attacker can request it directly. The server then executes the uploaded code in the context of the qihang-wms process. This grants attackers the ability to run commands, read application data, and pivot deeper into the environment. The issue is exploitable over the network without authentication or user interaction.

Root Cause

The root cause is missing server-side validation in the file upload routine. The controller trusts user-supplied filenames and content without enforcing an allowlist of permitted extensions, verifying magic bytes, or storing uploads outside the web-accessible directory. This is a textbook instance of [CWE-434].

Attack Vector

An attacker sends an HTTP POST request to the import endpoint with a crafted multipart payload containing executable code. After the upload succeeds, the attacker issues a follow-up request to the uploaded resource path to trigger execution. No credentials are required, and the attack is remotely reachable.

For implementation specifics, see the public vulnerability writeup and the associated GitHub Gist proof-of-concept notes.

Detection Methods for CVE-2026-37430

Indicators of Compromise

  • Unexpected files with executable extensions (.jsp, .jspx, .war, .sh) written under qihang-wms upload directories
  • HTTP POST requests to shop order import endpoints with multipart payloads larger or differently shaped than legitimate import files
  • Subsequent GET requests to files inside upload directories from external IP addresses

Detection Strategies

  • Inspect web server and application logs for POST requests to the import controller followed by GET requests to newly created upload paths
  • Hash and baseline contents of the upload directory, alerting on any non-document file types
  • Monitor Java process creation for child shells (sh, bash, cmd.exe) spawned by the qihang-wms application

Monitoring Recommendations

  • Enable verbose access logging on the qihang-wms reverse proxy and ship logs to a central platform for correlation
  • Apply file integrity monitoring to web-accessible directories used for imports
  • Alert on outbound network connections originating from the qihang-wms host to untrusted destinations, which often indicate post-exploitation activity

How to Mitigate CVE-2026-37430

Immediate Actions Required

  • Restrict network access to the qihang-wms import endpoint to trusted internal IP ranges until a patched build is deployed
  • Require authentication and authorization on the ShopOrderImportController route at the reverse proxy or WAF layer
  • Audit the upload directory for files written since the application was deployed and remove any unexpected executable content

Patch Information

No official vendor patch is referenced in the NVD entry for CVE-2026-37430. Operators running builds based on commit 75c15a should track the upstream qihang-wms repository for a fixed commit and rebuild from a vetted source once available.

Workarounds

  • Configure the application server to deny execution of scripts within upload directories, for example by disabling JSP handling for that path
  • Add a WAF rule that rejects multipart uploads to the import endpoint when the filename extension is not in an allowlist such as .csv, .xls, or .xlsx
  • Run qihang-wms under a low-privilege service account so that successful exploitation does not yield administrative access
bash
# Example nginx snippet to block executable uploads from being served
location ~* ^/upload/.*\.(jsp|jspx|war|sh|php)$ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechQihang Wms

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-434
  • Technical References
  • GitHub Gist Resource

  • GitHub CVE Security Vulnerability
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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