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

CVE-2020-28037: WordPress RCE Vulnerability

CVE-2020-28037 is a remote code execution vulnerability in WordPress that allows attackers to perform unauthorized installations and execute malicious code. This article covers technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2020-28037 Overview

CVE-2020-28037 is a critical vulnerability in WordPress affecting the is_blog_installed function in wp-includes/functions.php. This flaw allows attackers to bypass the WordPress installation check, potentially enabling them to perform a new installation on an already-configured WordPress site. Successful exploitation can lead to remote code execution (RCE) and complete site takeover, while simultaneously causing a denial of service for the existing WordPress installation.

Critical Impact

This vulnerability allows unauthenticated attackers to potentially execute arbitrary code and completely compromise WordPress installations by forcing a reinstallation, resulting in full site takeover and data loss.

Affected Products

  • WordPress versions prior to 5.5.2
  • Fedora 31, 32, and 33
  • Debian Linux 10.0

Discovery Timeline

  • November 2, 2020 - CVE-2020-28037 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2020-28037

Vulnerability Analysis

The vulnerability resides in the is_blog_installed() function within wp-includes/functions.php. This function is responsible for determining whether a WordPress installation has already been completed. Due to improper logic in evaluating the installation state, the function can incorrectly return a value indicating that WordPress is not yet installed, even when a valid installation exists.

This flaw creates a race condition or state confusion scenario where an attacker could exploit the improper check to trigger the WordPress installation wizard on an already-configured site. Once the installation wizard is accessible, the attacker can configure a new administrator account, overwrite the existing database configuration, and ultimately gain complete control over the WordPress instance.

The impact is twofold: first, the attacker achieves remote code execution capabilities through the newly created administrator account, which can upload malicious plugins or themes. Second, the original installation becomes inaccessible or corrupted, resulting in a denial of service for legitimate users and administrators.

Root Cause

The root cause is classified as CWE-754: Improper Check for Unusual or Exceptional Conditions. The is_blog_installed() function fails to properly validate all conditions that indicate a completed WordPress installation. This inadequate validation allows the installation process to be reinitiated under specific circumstances, bypassing the intended protection that should prevent reinstallation on configured sites.

Attack Vector

This vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can remotely access the WordPress installation endpoint and exploit the improper installation check to gain unauthorized access. The attack flow involves:

  1. The attacker identifies a vulnerable WordPress installation (version < 5.5.2)
  2. The attacker crafts requests that trigger the flawed is_blog_installed() check
  3. If the check incorrectly returns that WordPress is not installed, the installation wizard becomes accessible
  4. The attacker completes a new installation, creating admin credentials under their control
  5. With admin access, the attacker can upload malicious code, modify content, or exfiltrate data

The vulnerability requires no special privileges or user interaction, making it highly exploitable in automated attack scenarios.

Detection Methods for CVE-2020-28037

Indicators of Compromise

  • Unexpected access to WordPress installation pages (/wp-admin/install.php) on configured sites
  • Sudden database connection errors or configuration changes without administrator action
  • New administrator accounts appearing in the WordPress user database
  • Modifications to wp-config.php or other core WordPress files
  • Suspicious network requests targeting WordPress installation endpoints

Detection Strategies

  • Monitor web server logs for requests to /wp-admin/install.php on established WordPress sites
  • Implement file integrity monitoring for WordPress core files, especially wp-config.php
  • Set up alerts for new administrator account creation events
  • Deploy web application firewall (WAF) rules to block installation endpoint access on production sites
  • Enable WordPress security plugins that monitor for unauthorized configuration changes

Monitoring Recommendations

  • Implement real-time log analysis for WordPress access patterns and anomalies
  • Configure alerts for any HTTP requests to WordPress setup or installation paths
  • Monitor database tables for unexpected user creation or privilege escalation
  • Use SentinelOne Singularity Platform to detect post-exploitation activities and malicious code execution
  • Regularly audit WordPress user accounts and administrative access

How to Mitigate CVE-2020-28037

Immediate Actions Required

  • Update WordPress to version 5.5.2 or later immediately
  • Verify WordPress installation integrity using official checksums
  • Review administrator accounts for any unauthorized users
  • Check wp-config.php for unexpected modifications
  • Implement network-level restrictions on WordPress installation endpoints

Patch Information

WordPress addressed this vulnerability in version 5.5.2, released in October 2020. The fix is documented in the GitHub WordPress Commit. Organizations should update to the latest WordPress version to receive this and subsequent security patches. The official WordPress Security Release provides additional details. Debian and Fedora users should apply updates through their respective package managers as documented in Debian Security Advisory DSA-4784.

Workarounds

  • Restrict access to WordPress installation files at the web server level using .htaccess or nginx configuration
  • Implement IP-based access controls for WordPress administrative endpoints
  • Use a web application firewall to block requests to installation-related URLs
  • Remove or rename wp-admin/install.php after initial installation (note: may affect future updates)
  • Deploy file integrity monitoring to detect unauthorized changes to core WordPress files
bash
# Apache .htaccess example to block installation endpoint access
<Files "install.php">
    Order Allow,Deny
    Deny from all
</Files>

# Nginx configuration to restrict installation endpoint
location ~* /wp-admin/install\.php$ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability12.73%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-754
  • Technical References
  • Debian LTS Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • WPScan Vulnerability #10450

  • Debian Security Advisory DSA-4784
  • Vendor Resources
  • GitHub WordPress Commit

  • WordPress Security Release
  • Related CVEs
  • CVE-2026-4347: MW WP Form WordPress Plugin RCE Vulnerability

  • CVE-2026-4257: Contact Form by Supsystic RCE Vulnerability

  • CVE-2026-3328: WordPress Frontend Admin Plugin RCE Flaw

  • CVE-2026-3533: Jupiter X Core WordPress Plugin RCE Flaw
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