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-2020-37137

CVE-2020-37137: PHP-Fusion RCE Vulnerability

CVE-2020-37137 is a remote code execution vulnerability in PHP-Fusion 9.03.50 affecting the add_panel_form() function. Attackers can execute arbitrary code via unsanitized POST data. This article covers technical details, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2020-37137 Overview

PHP-Fusion 9.03.50 contains a remote code execution vulnerability in the add_panel_form() function that allows attackers to execute arbitrary code through an eval() function with unsanitized POST data. Attackers can exploit the vulnerability by sending crafted panel_content POST parameters to the panels.php administration endpoint to execute malicious code.

Critical Impact

This code injection vulnerability allows authenticated attackers with administrative privileges to execute arbitrary PHP code on the server, potentially leading to complete system compromise, data theft, and lateral movement within the network.

Affected Products

  • PHP-Fusion 9.03.50
  • PHP-Fusion 9.x versions with vulnerable add_panel_form() function
  • Web servers running vulnerable PHP-Fusion CMS installations

Discovery Timeline

  • 2026-02-05 - CVE CVE-2020-37137 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2020-37137

Vulnerability Analysis

This vulnerability is classified as CWE-95: Improper Neutralization of Directives in Dynamically Evaluated Code (Eval Injection). The flaw exists in the PHP-Fusion content management system's panel administration functionality, specifically within the add_panel_form() function located in panels.php.

The core issue stems from the application's use of PHP's eval() function to process user-supplied content without proper sanitization. When an administrator creates or modifies a panel through the administrative interface, the panel_content POST parameter is passed directly to eval() for execution. This allows an attacker with administrative access to inject and execute arbitrary PHP code on the underlying server.

The network-based attack vector requires no user interaction beyond the initial authentication. While high privileges (administrative access) are required to exploit this vulnerability, the impact is severe as successful exploitation grants complete control over the web server's PHP execution environment.

Root Cause

The root cause of this vulnerability is the dangerous use of PHP's eval() function combined with insufficient input validation. The add_panel_form() function accepts POST data from the panel_content parameter and passes it to eval() without sanitizing or validating the input for malicious code constructs. This violates secure coding practices that dictate user input should never be directly evaluated as code.

Attack Vector

The attack is conducted over the network by an authenticated attacker with administrative privileges. The attacker crafts a malicious POST request to the /administration/panels.php endpoint, embedding PHP code within the panel_content parameter. When the server processes this request, the malicious payload is executed via the eval() function, granting the attacker remote code execution capabilities.

The vulnerability can be exploited to execute system commands, read or write files on the server, establish reverse shells, or pivot to other systems within the network. Since the code executes within the web server's context, the attacker inherits all permissions of the web server process.

Technical details and proof-of-concept information are available through the Exploit-DB #48278 advisory and the VulnCheck Advisory.

Detection Methods for CVE-2020-37137

Indicators of Compromise

  • Unusual POST requests to /administration/panels.php containing PHP function calls or suspicious code patterns in the panel_content parameter
  • Web server error logs showing PHP execution errors or unexpected command execution
  • New or modified panel entries in the database containing executable PHP code
  • Unexpected outbound network connections from the web server process
  • File system modifications in web directories including new PHP files or webshells

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block eval() injection patterns in POST requests
  • Monitor authentication logs for administrative panel access from unusual IP addresses or at unusual times
  • Deploy endpoint detection solutions like SentinelOne to identify malicious PHP process spawning or command execution
  • Review PHP-Fusion panel database tables for entries containing suspicious PHP code constructs such as system(), exec(), passthru(), or shell_exec()

Monitoring Recommendations

  • Enable detailed logging for all administrative panel actions in PHP-Fusion
  • Configure SIEM alerts for POST requests to panels.php containing code injection indicators
  • Monitor web server process behavior for child process spawning or unusual network activity
  • Implement file integrity monitoring on PHP-Fusion installation directories

How to Mitigate CVE-2020-37137

Immediate Actions Required

  • Upgrade PHP-Fusion to the latest patched version available from the PHP-Fusion Website
  • Review and audit all existing panel configurations for malicious code injection
  • Restrict access to the /administration/ directory through IP allowlisting or additional authentication layers
  • Implement a Web Application Firewall with rules to block code injection attempts
  • Audit administrative user accounts and revoke unnecessary privileges

Patch Information

Administrators should immediately check for updates from the PHP-Fusion project and apply the latest security patches. Visit the official PHP-Fusion Website for updated releases that address this vulnerability. Additionally, review the VulnCheck Advisory for detailed technical guidance.

Workarounds

  • Disable the panel creation/editing functionality in the administration interface if not actively required
  • Implement strict input validation and sanitization at the web server or reverse proxy level to filter potentially malicious panel_content values
  • Deploy a WAF rule to block POST requests to panels.php containing PHP code patterns such as <?php, eval(, system(, or similar constructs
  • Restrict administrative panel access to trusted IP addresses only via .htaccess or server configuration
  • Consider placing the PHP-Fusion installation behind a VPN for administrative access
bash
# Example .htaccess restriction for administration directory
<Directory "/var/www/html/php-fusion/administration">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPhp Fusion

  • SeverityHIGH

  • CVSS Score8.6

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/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-95
  • Technical References
  • Exploit-DB #48278

  • PHP-Fusion Website

  • VulnCheck Advisory on PHP-Fusion
  • Related CVEs
  • CVE-2020-37152: PHP-Fusion 9.03.50 XSS 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