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
    • 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-2020-37169

CVE-2020-37169: Ultimate Member WordPress Plugin RCE Flaw

CVE-2020-37169 is a local file inclusion vulnerability in Ultimate Member WordPress plugin 2.1.3 that enables authenticated attackers to execute arbitrary code. This article covers the technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2020-37169 Overview

CVE-2020-37169 is a Local File Inclusion (LFI) vulnerability in the WordPress plugin Ultimate Member version 2.1.3. The flaw resides in class-admin-upgrade.php, where the pack parameter is used to construct a file path without proper validation. Authenticated attackers can send POST requests with crafted pack values to include arbitrary PHP files from the packages directory. Successful exploitation leads to arbitrary code execution within the WordPress application context. The weakness is categorized under CWE-98: Improper Control of Filename for Include/Require Statement in PHP Program.

Critical Impact

Authenticated attackers can include arbitrary PHP files via the pack parameter, leading to code execution on affected WordPress sites running Ultimate Member 2.1.3.

Affected Products

  • WordPress Plugin Ultimate Member version 2.1.3
  • WordPress installations with the vulnerable plugin enabled
  • Sites where attackers can obtain authenticated administrative access to the upgrade routine

Discovery Timeline

  • 2026-05-13 - CVE-2020-37169 published to the National Vulnerability Database (NVD)
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2020-37169

Vulnerability Analysis

The vulnerability exists in the class-admin-upgrade.php file of Ultimate Member 2.1.3. The plugin accepts a user-controlled pack parameter from POST requests and concatenates it into a file path used by a PHP include or require statement. Because the plugin does not sanitize or validate the pack value against an allowlist, attackers can supply path traversal sequences or alternate file references to load unintended PHP files. When the included file contains executable PHP, the server runs it within the plugin's privileged context.

Root Cause

The root cause is improper control of a filename used in a PHP include statement [CWE-98]. The pack parameter is trusted as input to file path construction without normalization, canonicalization, or restriction to a predefined set of valid package identifiers. This pattern allows attacker-supplied values to redirect inclusion to files outside the intended packages directory.

Attack Vector

Exploitation requires an authenticated session with permission to reach the admin upgrade handler. The attacker submits a POST request to the vulnerable endpoint with a manipulated pack value referencing a PHP file accessible on the server. The plugin then includes that file, executing any PHP it contains. The attack vector is local according to the CVSS 4.0 vector, reflecting the authenticated and admin-context preconditions for reaching the vulnerable code path.

For verified proof-of-concept details, see the Exploit-DB entry #48065 and the VulnCheck WordPress Advisory.

Detection Methods for CVE-2020-37169

Indicators of Compromise

  • POST requests to WordPress admin endpoints containing a pack parameter with path traversal sequences such as ../ or absolute file paths
  • Unexpected PHP file inclusions logged by the web server or WordPress debug log referencing files outside the Ultimate Member packages directory
  • New or modified PHP files in plugin or upload directories shortly after admin authentication events
  • Outbound network connections originating from the PHP-FPM or web server process following suspicious admin activity

Detection Strategies

  • Inspect web access logs for POST requests targeting class-admin-upgrade.php or Ultimate Member upgrade handlers with non-standard pack values
  • Apply web application firewall (WAF) rules that flag pack parameter values containing directory traversal patterns or unexpected characters
  • Audit WordPress administrator account activity for anomalous logins preceding upgrade requests
  • Correlate file integrity monitoring alerts in wp-content/plugins/ultimate-member/ with administrator HTTP sessions

Monitoring Recommendations

  • Enable PHP error and access logging on the WordPress host and forward logs to a centralized analytics platform
  • Monitor for the creation of webshells or unfamiliar PHP files in wp-content/uploads/ and plugin directories
  • Alert on process executions spawned by the web server user that deviate from normal PHP workloads

How to Mitigate CVE-2020-37169

Immediate Actions Required

  • Upgrade Ultimate Member to a version later than 2.1.3 that addresses the pack parameter handling
  • Restrict access to the WordPress admin area using IP allowlists, multi-factor authentication, and least-privilege role assignments
  • Review administrator accounts and rotate credentials for any account that may have accessed the upgrade routine
  • Scan the WordPress installation for webshells and unauthorized file modifications

Patch Information

Update the Ultimate Member plugin to a fixed release through the WordPress plugin repository. Refer to the VulnCheck WordPress Advisory for vendor remediation guidance and the Exploit-DB entry for proof-of-concept context when validating fixes.

Workarounds

  • Disable the Ultimate Member plugin until it can be upgraded to a patched release
  • Deploy WAF rules that block POST requests containing pack values with traversal sequences or non-allowlisted package names
  • Set open_basedir in PHP configuration to constrain file inclusion paths to the WordPress installation directory
bash
# Example PHP open_basedir restriction for WordPress
php_admin_value open_basedir "/var/www/html/wordpress/:/tmp/"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-98
  • Technical References
  • Exploit-DB #48065

  • VulnCheck WordPress Advisory
  • Related CVEs
  • CVE-2026-6271: Career Section WordPress Plugin RCE Flaw

  • CVE-2026-3425: RTMKit Addons for Elementor RCE Flaw

  • CVE-2026-6433: WordPress Custom css-js-php RCE Flaw

  • CVE-2021-47933: WordPress MStore API RCE 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