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

CVE-2024-7917: Douco DouPHP RCE Vulnerability

CVE-2024-7917 is a critical remote code execution vulnerability in Douco DouPHP 1.7 affecting the Favicon Handler component. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 1, 2026

CVE-2024-7917 Overview

A critical unrestricted file upload vulnerability has been discovered in DouPHP 1.7 Release 20220822. This vulnerability affects the Favicon Handler component within the /admin/system.php file. By manipulating the site_favicon argument, an attacker can upload arbitrary files to the server without proper validation, potentially leading to remote code execution or other malicious activities.

Critical Impact

Attackers with administrative access can exploit this unrestricted file upload vulnerability to upload malicious files, potentially achieving remote code execution on the target server.

Affected Products

  • DouPHP 1.7 Release 20220822
  • Douco DouPHP CMS platforms using vulnerable versions

Discovery Timeline

  • August 18, 2024 - CVE-2024-7917 published to NVD
  • August 21, 2024 - Last updated in NVD database

Technical Details for CVE-2024-7917

Vulnerability Analysis

This vulnerability is classified as CWE-434 (Unrestricted Upload of File with Dangerous Type). The vulnerable component resides in the Favicon Handler functionality of DouPHP's administrative interface. The application fails to properly validate or restrict the file types that can be uploaded through the site_favicon parameter in /admin/system.php.

When processing favicon uploads, the application accepts user-supplied files without adequate content-type verification, file extension validation, or proper sanitization. This allows an authenticated administrator to upload files with dangerous extensions (such as .php) that can subsequently be executed on the server.

The network-based attack vector means this vulnerability can be exploited remotely, though it requires authenticated administrative privileges to access the vulnerable endpoint.

Root Cause

The root cause of this vulnerability is insufficient input validation in the favicon upload functionality. The application does not implement proper file type restrictions, allowing files with executable extensions to be uploaded. Specifically, the site_favicon parameter handling lacks:

  • File extension whitelisting
  • MIME type validation
  • Content inspection to verify actual file contents
  • Proper file storage outside of web-accessible directories

Attack Vector

The attack can be launched remotely by an authenticated administrator through the following approach:

  1. The attacker gains access to the DouPHP administrative panel
  2. Navigates to the system settings where favicon configuration is available
  3. Uploads a malicious file (e.g., PHP web shell) disguised as a favicon through the site_favicon parameter
  4. The malicious file is stored in a web-accessible directory
  5. The attacker accesses the uploaded file directly via its URL, triggering code execution

The exploit for this vulnerability has been disclosed publicly, making it accessible to potential attackers. For technical details, refer to the Shikangsi Wiki Post documenting the vulnerability.

Detection Methods for CVE-2024-7917

Indicators of Compromise

  • Unexpected file uploads in favicon or image directories with executable extensions (.php, .phtml, .phar)
  • Suspicious HTTP POST requests to /admin/system.php containing file upload payloads
  • Newly created PHP files in web-accessible directories that were not part of legitimate updates
  • Web shell signatures or backdoor patterns in uploaded files

Detection Strategies

  • Monitor file system changes in web directories for newly created executable files
  • Implement web application firewall (WAF) rules to detect malicious file upload attempts
  • Review access logs for unusual POST requests to /admin/system.php with large payload sizes
  • Deploy file integrity monitoring (FIM) on critical web directories to detect unauthorized modifications

Monitoring Recommendations

  • Enable detailed logging on the DouPHP administrative interface, particularly for file upload operations
  • Configure alerts for any new file creation events in web-accessible upload directories
  • Monitor for suspicious outbound connections that could indicate web shell activity
  • Implement SentinelOne's behavioral AI detection to identify post-exploitation activities resulting from successful file upload attacks

How to Mitigate CVE-2024-7917

Immediate Actions Required

  • Restrict access to the DouPHP administrative panel to trusted IP addresses only
  • Implement strong authentication mechanisms and review administrative user accounts
  • Apply file upload restrictions at the web server level to prevent executable file uploads
  • Remove or disable the favicon upload functionality if not required

Patch Information

No official patch information is currently available from the vendor. Organizations using DouPHP 1.7 Release 20220822 should monitor for security updates from Douco. Additional vulnerability details can be found at VulDB Entry #275042.

Workarounds

  • Configure web server rules to block execution of uploaded files in favicon directories
  • Implement a Web Application Firewall (WAF) with rules to filter malicious file upload attempts
  • Modify the application code to enforce strict file type validation (whitelist only image formats like .ico, .png)
  • Store uploaded files outside the web root and serve them through a secure handler
bash
# Apache configuration to prevent script execution in upload directories
<Directory "/path/to/douphp/uploads">
    php_admin_flag engine off
    AddHandler default-handler .php .phtml .phar
    <FilesMatch "\.(php|phtml|phar|php5|php7)$">
        Require all denied
    </FilesMatch>
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechDouco Douphp

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:L/VI:L/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-434
  • Technical References
  • VulDB CTI Entry #275042

  • VulDB #275042

  • VulDB Submission #389296

  • Shikangsi Wiki Post
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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