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
    • 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-4201

CVE-2026-4201: glowxq-oj Unrestricted Upload RCE Vulnerability

CVE-2026-4201 is an unrestricted upload vulnerability in glowxq-oj that enables remote code execution through the SysFileController Upload function. This post covers technical details, exploit availability, and mitigation.

Published: March 20, 2026

CVE-2026-4201 Overview

A critical unrestricted file upload vulnerability has been identified in glowxq glowxq-oj, an online judge system. This vulnerability affects the Upload function within the file business/business-system/src/main/java/com/glowxq/system/admin/controller/SysFileController.java. The flaw allows remote attackers to upload arbitrary files without proper validation, potentially leading to remote code execution or other severe security impacts.

Critical Impact

Remote attackers can exploit this unrestricted file upload vulnerability to upload malicious files, potentially achieving arbitrary code execution on the server. The exploit has been publicly disclosed, increasing the risk of active exploitation.

Affected Products

  • glowxq glowxq-oj (up to commit 6f7c723090472057252040fd2bbbdaa1b5ed2393)
  • SysFileController.java Upload function
  • Note: This product does not use versioning; specific version information is unavailable

Discovery Timeline

  • 2026-03-16 - CVE-2026-4201 published to NVD
  • 2026-03-16 - Last updated in NVD database

Technical Details for CVE-2026-4201

Vulnerability Analysis

This vulnerability is classified under CWE-284 (Improper Access Control), specifically manifesting as an unrestricted file upload issue. The Upload function in SysFileController.java fails to implement proper validation controls on uploaded files.

The vulnerability exists because the application does not adequately restrict file types, validate file content, or enforce security controls during the file upload process. This allows attackers to bypass intended security restrictions and upload potentially malicious files to the server.

The network-accessible nature of this vulnerability means that attackers can exploit it remotely without requiring authentication or user interaction, significantly expanding the attack surface. The public availability of exploit information increases the likelihood of exploitation attempts.

Root Cause

The root cause of this vulnerability lies in improper access control implementation within the file upload functionality. The SysFileController.java controller fails to implement essential security checks including:

  • File type validation (MIME type and extension checks)
  • File content inspection
  • Upload directory restrictions
  • Access control enforcement on the upload endpoint

This oversight allows attackers to manipulate the upload process and submit arbitrary file types that should otherwise be restricted.

Attack Vector

The attack can be executed remotely over the network. An attacker can craft malicious HTTP requests targeting the file upload endpoint exposed by SysFileController.java. By manipulating the request parameters, attackers can upload files with dangerous extensions (such as .jsp, .php, or .exe) or embed malicious payloads within seemingly legitimate files.

The exploitation process typically involves:

  1. Identifying the vulnerable upload endpoint
  2. Crafting a multipart HTTP request with a malicious file payload
  3. Bypassing any client-side validation through direct request manipulation
  4. Uploading a web shell or other malicious content
  5. Executing the uploaded payload to gain further system access

For technical details on the vulnerability mechanism, refer to the VulDB entry #351113 and the associated disclosure documentation.

Detection Methods for CVE-2026-4201

Indicators of Compromise

  • Unusual file uploads to the application's upload directories, particularly files with executable extensions (.jsp, .php, .sh, .exe)
  • Presence of web shells or suspicious scripts in web-accessible directories
  • Unexpected outbound network connections from the web server
  • Anomalous HTTP POST requests to the file upload endpoint with large payloads or unusual file types

Detection Strategies

  • Monitor HTTP traffic for multipart/form-data POST requests to /admin/controller/SysFileController or similar upload endpoints
  • Implement file integrity monitoring on web server directories to detect unauthorized file additions
  • Deploy web application firewall (WAF) rules to block uploads of potentially dangerous file types
  • Analyze server logs for patterns indicative of web shell activity or reconnaissance

Monitoring Recommendations

  • Enable detailed logging for all file upload operations including source IP, filename, file size, and MIME type
  • Configure alerts for file uploads containing executable content or script extensions
  • Implement real-time monitoring of web-accessible directories for new file creation events
  • Review and correlate authentication logs with upload activity to identify unauthorized access attempts

How to Mitigate CVE-2026-4201

Immediate Actions Required

  • Disable or restrict access to the file upload functionality in SysFileController.java until a patch is available
  • Implement network-level access controls to limit who can reach the upload endpoint
  • Deploy a web application firewall (WAF) with rules to block malicious file uploads
  • Review existing uploaded files for signs of malicious content and quarantine suspicious files
  • Monitor the application for signs of exploitation while implementing temporary controls

Patch Information

No official patch is currently available from the vendor. The vendor was contacted regarding this disclosure but did not respond. Organizations using glowxq-oj should consider:

  • Implementing the workarounds listed below
  • Monitoring for updates from the vendor or community
  • Evaluating alternative solutions if security patches are not forthcoming
  • Tracking the VulDB entry for updates on remediation options

Workarounds

  • Implement server-side file type validation using allowlists for permitted file extensions and MIME types
  • Store uploaded files outside the web root to prevent direct execution
  • Rename uploaded files with random identifiers to obscure their original names and prevent predictable access
  • Apply strict file permissions on upload directories to prevent execution
  • Consider disabling the upload functionality entirely if not critical to business operations
bash
# Example: Restrict upload directory permissions
chmod 644 /path/to/upload/directory/*
chown www-data:www-data /path/to/upload/directory

# Disable execution in upload directories (Apache)
# Add to .htaccess in upload directory:
# php_flag engine off
# Options -ExecCGI
# AddHandler cgi-script .php .pl .py .jsp .asp .sh .cgi

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGlowxq

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/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
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-284
  • Technical References
  • Feishu Document Link

  • VulDB CTI ID #351113

  • VulDB #351113

  • VulDB Submission #770477
  • Related CVEs
  • CVE-2026-4200: glowxq-oj SSRF 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