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

CVE-2026-34735: Hytale Modding Wiki RCE Vulnerability

CVE-2026-34735 is a remote code execution flaw in Hytale Modding Wiki that allows attackers to upload malicious PHP files and execute server-side code. This post explains its impact, affected versions, and mitigation steps.

Published: April 2, 2026

CVE-2026-34735 Overview

CVE-2026-34735 is an unrestricted file upload vulnerability (CWE-434) affecting the Hytale Modding Wiki, a free documentation and wiki hosting service for Hytale mods. The vulnerability exists in version 1.2.0 and prior versions due to a mismatch between file content validation and filename handling in the quickUpload() endpoint. This flaw allows authenticated attackers to upload malicious PHP files that can be executed server-side, leading to remote code execution.

Critical Impact

Successful exploitation enables attackers to execute arbitrary server-side code, potentially compromising the entire web server, accessing sensitive data, and pivoting to internal network resources. No patches are currently available.

Affected Products

  • Hytale Modding Wiki version 1.2.0
  • Hytale Modding Wiki versions prior to 1.2.0

Discovery Timeline

  • 2026-04-02 - CVE CVE-2026-34735 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-34735

Vulnerability Analysis

The vulnerability stems from an inconsistent validation approach in the file upload functionality. The quickUpload() endpoint performs MIME type validation using PHP's finfo extension, which inspects the actual file contents to determine the file type. However, when storing the file, the system uses getClientOriginalExtension() to determine the file extension, which relies entirely on the client-supplied filename.

This design creates a critical security gap: the MIME type check and the file extension are validated independently. An attacker can craft a file that contains content passing the MIME allowlist (such as a valid image header) while simultaneously specifying a .php extension. When the server stores this file on the public disk, it becomes directly accessible via URL, and the web server executes it as PHP code.

Root Cause

The root cause is the disconnect between content-based validation (MIME type inspection) and the use of client-controlled input (the original file extension) for determining how the file is stored and subsequently processed by the web server. Secure file upload implementations should either whitelist allowed extensions independently of content validation, or generate safe file extensions server-side based on the validated MIME type.

Attack Vector

The attack can be performed remotely over the network by any user with low-level privileges sufficient to access the quickUpload() endpoint. No user interaction is required beyond the initial authentication. The attacker uploads a specially crafted file containing malicious PHP code with content that passes MIME validation (e.g., a polyglot file with valid image headers followed by PHP code). By specifying a .php extension, the file is stored with that extension on the public disk. The attacker then accesses the uploaded file via its public URL, causing the web server to execute the embedded PHP code.

The vulnerability allows direct access to the underlying server through webshell deployment, enabling attackers to execute arbitrary commands, exfiltrate data, modify system configurations, or establish persistent access to the compromised environment.

Detection Methods for CVE-2026-34735

Indicators of Compromise

  • Presence of .php files in the wiki's public upload directories that were not intentionally uploaded by administrators
  • Web server logs showing requests to unexpected PHP files in upload paths
  • Unusual process spawning from the web server process (e.g., www-data executing shell commands)
  • File integrity monitoring alerts for new executable files in upload directories

Detection Strategies

  • Monitor file upload activity for files with executable extensions (.php, .phtml, .php5, etc.) being written to public directories
  • Implement web application firewall rules to flag or block upload requests containing PHP extensions
  • Deploy file integrity monitoring on upload directories to detect new PHP files
  • Analyze web server access logs for requests to recently created files in upload paths

Monitoring Recommendations

  • Enable verbose logging on the quickUpload() endpoint to capture all file upload attempts with their original extensions
  • Set up real-time alerts for any file with an executable extension being created in upload directories
  • Review web server error logs for PHP parsing errors that may indicate failed exploitation attempts
  • Implement egress monitoring to detect potential data exfiltration following successful exploitation

How to Mitigate CVE-2026-34735

Immediate Actions Required

  • Restrict access to the quickUpload() endpoint to trusted administrators only until a patch is available
  • Implement server-side filename sanitization that ignores client-supplied extensions and generates safe extensions based on validated MIME types
  • Configure the web server to disable PHP execution in upload directories using .htaccess or server configuration
  • Consider deploying web application firewall rules to block file uploads with executable extensions

Patch Information

At the time of publication, no official patches are available for this vulnerability. Organizations using the Hytale Modding Wiki should monitor the GitHub Security Advisory for updates on remediation guidance and patch availability.

Workarounds

  • Configure Apache to prevent PHP execution in upload directories by adding php_flag engine off to the directory's .htaccess file
  • For Nginx, add location ~ /uploads/.*\.php$ { deny all; } to prevent PHP execution in upload paths
  • Implement a proxy or CDN that strips executable content from responses originating from upload directories
  • Move the public disk storage to a separate domain that does not execute server-side scripts
  • Temporarily disable the quickUpload() functionality if it is not critical to operations
bash
# Apache: Disable PHP execution in uploads directory
# Add to .htaccess in the uploads directory:
# php_flag engine off

# Nginx: Block PHP execution in uploads
# Add to server configuration:
# location ~ /uploads/.*\.php$ { deny all; }

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechHytale

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-32736: Hytale Modding Wiki IDOR 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