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-2024-27115

CVE-2024-27115: Soplanning RCE Vulnerability Explained

CVE-2024-27115 is an unauthenticated remote code execution flaw in Soplanning that allows attackers to upload and execute malicious files. This article covers the technical details, affected versions, and mitigation.

Published: March 31, 2026

CVE-2024-27115 Overview

CVE-2024-27115 is a critical unauthenticated Remote Code Execution (RCE) vulnerability discovered in SO Planning, an online planning and scheduling tool. This vulnerability allows attackers to upload executable files that are moved to a publicly accessible folder before any verification requirements are checked. This improper file upload handling leads to the possibility of arbitrary code execution on the underlying system when the malicious file is triggered.

Critical Impact

Unauthenticated attackers can achieve full system compromise by uploading and executing malicious files on servers running vulnerable versions of SO Planning, potentially leading to complete infrastructure takeover.

Affected Products

  • SO Planning versions prior to 1.52.02
  • All installations with default file upload configurations
  • Self-hosted SO Planning deployments exposed to the internet

Discovery Timeline

  • 2024-09-11 - CVE CVE-2024-27115 published to NVD
  • 2024-09-18 - Last updated in NVD database

Technical Details for CVE-2024-27115

Vulnerability Analysis

This vulnerability is classified under CWE-434 (Unrestricted Upload of File with Dangerous Type), which represents a critical class of web application security flaws. The core issue lies in SO Planning's file upload mechanism, which fails to properly validate uploaded files before placing them in a web-accessible directory.

The attack requires no authentication, meaning any network-connected adversary can exploit this vulnerability without credentials. The file upload functionality moves uploaded content to a publicly accessible location on the server before performing any security checks or file type verification, creating a race condition that attackers can leverage for immediate code execution.

Root Cause

The root cause of CVE-2024-27115 stems from improper ordering of security operations in the file upload workflow. The application moves uploaded files to a publicly accessible directory before validating file types, extensions, or content. This "move-then-verify" approach creates a window where malicious executable files can be accessed and triggered by an attacker before any security controls are applied.

Attack Vector

The attack is network-accessible with low complexity and requires no privileges or user interaction. An attacker can exploit this vulnerability by:

  1. Crafting a malicious executable file (such as a PHP web shell or server-side script)
  2. Uploading the file through SO Planning's file upload functionality without authentication
  3. Accessing the uploaded file directly via its publicly accessible URL before verification occurs
  4. Achieving arbitrary code execution on the underlying server with the privileges of the web server process

This attack pattern enables complete server compromise, data exfiltration, lateral movement within the network, and establishment of persistent backdoor access.

Detection Methods for CVE-2024-27115

Indicators of Compromise

  • Unexpected executable files (.php, .phtml, .phar, .sh, .py, .pl) appearing in SO Planning upload directories
  • Web server logs showing requests to unusual file paths within the SO Planning application directory
  • Anomalous outbound network connections originating from the web server process
  • New or modified files with recent timestamps in publicly accessible upload folders

Detection Strategies

  • Monitor file system events for creation of executable files in SO Planning upload directories
  • Implement web application firewall (WAF) rules to inspect file upload requests for malicious content signatures
  • Review web server access logs for requests to files with executable extensions in upload paths
  • Deploy endpoint detection solutions to identify web shell behaviors and suspicious script execution

Monitoring Recommendations

  • Enable detailed logging for file upload operations within SO Planning
  • Configure alerts for executable file creation events on web servers hosting SO Planning
  • Implement network monitoring for unusual command-and-control (C2) communication patterns from web servers
  • Establish baseline behavior monitoring for the web server process to detect anomalous activity

How to Mitigate CVE-2024-27115

Immediate Actions Required

  • Upgrade SO Planning to version 1.52.02 or later immediately
  • Restrict network access to SO Planning instances using firewall rules until patching is complete
  • Review upload directories for any suspicious or unauthorized files
  • Implement additional WAF protections to block malicious file uploads as a defense-in-depth measure

Patch Information

The vulnerability has been remediated in SO Planning version 1.52.02. Organizations should upgrade to this version or later to address CVE-2024-27115. Additional technical details are available in the DIVD CVE-2024-27115 Analysis.

Workarounds

  • Implement strict file type validation at the web server level using configuration directives
  • Configure the web server to prevent execution of scripts in upload directories using .htaccess or equivalent configurations
  • Place upload directories outside the web root or block direct access via web server configuration
  • Deploy a reverse proxy with request filtering to inspect and sanitize file upload requests
bash
# Apache configuration to disable script execution in upload directories
<Directory "/var/www/soplanning/uploads">
    # Disable PHP execution
    php_admin_flag engine Off
    
    # Deny access to executable file types
    <FilesMatch "\.(php|phtml|phar|php5|php7|sh|py|pl|cgi)$">
        Require all denied
    </FilesMatch>
    
    # Set restrictive content-type headers
    RemoveHandler .php .phtml .phar .php5 .php7
    RemoveType .php .phtml .phar .php5 .php7
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechSoplanning

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability80.37%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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:N/AU:Y/R:I/V:C/RE:M/U:Red
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • DIVD CVE-2024-27115 Analysis
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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