A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2022-50953

CVE-2022-50953: WordPress Admin Word Count Column Vulnerability

CVE-2022-50953 is a path traversal flaw in WordPress admin-word-count-column plugin 2.2 that lets unauthenticated attackers read arbitrary files via null byte injection. This article covers technical details, impact, and mitigation.

Published: June 12, 2026

CVE-2022-50953 Overview

CVE-2022-50953 is a local file read vulnerability in the WordPress plugin admin-word-count-column version 2.2. The flaw exists in the download-csv.php endpoint, which fails to sanitize the path parameter against null byte injection and directory traversal sequences. Unauthenticated attackers can issue crafted GET requests to read arbitrary files from the underlying filesystem, including WordPress configuration files and operating system data. The vulnerability is classified under [CWE-22] Path Traversal.

Critical Impact

Unauthenticated attackers can read arbitrary files on the host, exposing credentials stored in wp-config.php, private keys, and system configuration.

Affected Products

  • WordPress Plugin admin-word-count-column version 2.2
  • WordPress installations with the vulnerable plugin enabled
  • Hosting environments serving the download-csv.php endpoint

Discovery Timeline

  • 2026-06-08 - CVE-2022-50953 published to NVD
  • 2026-06-08 - Last updated in NVD database

Technical Details for CVE-2022-50953

Vulnerability Analysis

The admin-word-count-column plugin exposes a download-csv.php script that accepts a user-controlled path parameter. The script uses the parameter to construct a filesystem path and serve the contents to the requester. The endpoint does not require authentication, so any remote visitor able to reach the WordPress site can invoke it.

The handler attempts to restrict file types, but the validation operates on the string representation of the path rather than the resolved filesystem path. Attackers bypass these checks by appending a null byte (%00) followed by an allowed extension. PHP versions affected by null byte handling in filesystem functions truncate the string at the null terminator, causing the underlying read to target a different file than the one validated.

Combined with ../ directory traversal sequences, the bypass allows reading any file readable by the web server process. Sensitive targets include wp-config.php, /etc/passwd, SSH private keys, and application logs.

Root Cause

The root cause is improper input neutralization in the path parameter handling within download-csv.php. The plugin trusts the supplied path string, performs only superficial extension checks, and passes the raw value to file read functions without canonicalization or allowlist enforcement.

Attack Vector

Exploitation requires a single HTTP GET request to download-csv.php with the path parameter set to a traversal payload containing directory escape sequences and a null byte terminator. No authentication, session, or user interaction is required. The Exploit-DB entry #50845 documents the request structure used to retrieve arbitrary files. See the VulnCheck Advisory for WordPress Plugin for additional technical context.

Detection Methods for CVE-2022-50953

Indicators of Compromise

  • GET requests to /wp-content/plugins/admin-word-count-column/download-csv.php with a populated path query parameter
  • URL-encoded null byte sequences (%00) within HTTP request parameters targeting the plugin
  • Directory traversal patterns such as ../../../../ in access logs for the plugin endpoint
  • Outbound responses from the plugin endpoint containing contents of wp-config.php or /etc/ files

Detection Strategies

  • Search web server access logs for requests matching download-csv.php combined with path= parameters containing ../ or %00
  • Alert on responses from the plugin endpoint exceeding typical CSV sizes or returning non-CSV content types
  • Deploy web application firewall rules that block null byte characters in query string parameters
  • Monitor file access auditing on wp-config.php for reads performed by the PHP-FPM or web server user

Monitoring Recommendations

  • Forward WordPress access logs and PHP error logs to a centralized analytics pipeline for correlation
  • Track plugin enumeration scans targeting /wp-content/plugins/admin-word-count-column/
  • Establish a baseline for legitimate CSV export activity and alert on deviations

How to Mitigate CVE-2022-50953

Immediate Actions Required

  • Disable and remove the admin-word-count-column plugin until a patched release is verified
  • Rotate any credentials, API keys, and database passwords stored in wp-config.php on affected hosts
  • Audit web server logs for prior exploitation attempts against download-csv.php
  • Restrict direct HTTP access to plugin PHP files through web server configuration

Patch Information

No fixed version is listed in the available advisory data. Review the WordPress Plugin Description page for current release status and remove the plugin if an updated, patched version is not available.

Workarounds

  • Block requests to download-csv.php at the reverse proxy or web application firewall layer
  • Add filesystem ACLs that prevent the web server user from reading sensitive files outside the WordPress document root
  • Configure PHP open_basedir to confine file operations to the WordPress installation directory
  • Apply WAF signatures that reject query strings containing null bytes or directory traversal sequences
bash
# Configuration example: block the vulnerable endpoint in nginx
location ~* /wp-content/plugins/admin-word-count-column/download-csv\.php$ {
    deny all;
    return 403;
}

# Restrict PHP file access scope in php.ini
# open_basedir = /var/www/html:/tmp

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/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-22
  • Technical References
  • WordPress Plugin Description

  • Exploit-DB #50845

  • VulnCheck Advisory for WordPress Plugin
  • Related CVEs
  • CVE-2026-2500: Quick Playground Path Traversal Flaw

  • CVE-2026-6381: WP Maps Path Traversal Vulnerability

  • CVE-2018-25324: Simple Fields WordPress Path Traversal

  • CVE-2021-47977: WordPress Anti-Malware Path Traversal Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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