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-2022-0952

CVE-2022-0952: Sitemap WordPress Auth Bypass Vulnerability

CVE-2022-0952 is an authorization bypass flaw in Sitemap by click5 WordPress plugin that lets unauthenticated attackers modify site options and create admin accounts. This article covers technical details, affected versions, impact, and mitigation.

Published: February 17, 2026

CVE-2022-0952 Overview

CVE-2022-0952 is a critical Cross-Site Request Forgery (CSRF) and authorization bypass vulnerability affecting the Sitemap by click5 WordPress plugin before version 1.0.36. The plugin fails to implement proper authorization checks and CSRF protections when updating options through its REST endpoint. Additionally, the plugin does not verify that options being updated actually belong to the plugin itself.

Critical Impact

Unauthenticated attackers can modify arbitrary WordPress blog options, including users_can_register and default_role, enabling them to create new administrator accounts and achieve complete site takeover.

Affected Products

  • Sitemap by click5 WordPress plugin versions prior to 1.0.36
  • WordPress installations using vulnerable Sitemap plugin versions
  • Sites exposing the plugin's REST API endpoint

Discovery Timeline

  • 2022-05-02 - CVE-2022-0952 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-0952

Vulnerability Analysis

This vulnerability combines two critical security weaknesses that together enable complete WordPress site compromise. The Sitemap by click5 plugin exposes a REST API endpoint for updating plugin options, but this endpoint lacks two essential security controls: authorization verification and CSRF token validation.

The most significant aspect of this vulnerability is the absence of option scope validation. The plugin does not restrict which WordPress options can be modified through its REST endpoint, meaning attackers can target any option in the WordPress database—not just those related to sitemap functionality.

The attack requires minimal user interaction, making it highly exploitable in real-world scenarios. An attacker can craft a malicious request that, when triggered by any authenticated WordPress user visiting a malicious page, will modify critical site settings without the user's knowledge or consent.

Root Cause

The root cause is a combination of missing authorization checks (broken access control) and absent CSRF protection in the plugin's REST endpoint handler. The plugin registers a REST route that accepts option update requests but fails to:

  1. Verify the requesting user has appropriate administrative privileges
  2. Validate a CSRF nonce token with each request
  3. Confirm the target option belongs to the plugin's defined option set

This triple failure of security controls allows any request—authenticated or not—to modify WordPress options through the vulnerable endpoint.

Attack Vector

The attack is network-based and can be executed remotely. An attacker would craft a malicious HTTP request to the vulnerable REST endpoint, targeting critical WordPress options. The most impactful attack scenario involves:

  1. Setting users_can_register to enabled, allowing public user registration
  2. Setting default_role to administrator, granting admin privileges to new registrations
  3. Registering a new account through the standard WordPress registration process
  4. Logging in with full administrative access to the compromised site

This attack chain can be delivered through various vectors including malicious advertisements, compromised third-party scripts, or targeted phishing campaigns. Since the vulnerability affects a REST endpoint, it can be exploited through standard HTTP requests without requiring complex payload delivery mechanisms.

The vulnerability allows modification of arbitrary WordPress wp_options table entries through the unprotected REST API endpoint. Attackers leverage this by targeting security-critical options that control user registration and default role assignment. For detailed technical analysis and proof-of-concept information, refer to the WPScan Vulnerability Report.

Detection Methods for CVE-2022-0952

Indicators of Compromise

  • Unexpected changes to users_can_register WordPress option being enabled
  • default_role option modified to administrator without authorization
  • New administrator accounts appearing in the WordPress user database
  • Unusual REST API requests to the Sitemap plugin endpoints in access logs
  • Modified site settings or plugin configurations without administrator action

Detection Strategies

  • Monitor WordPress wp_options table for unauthorized modifications to users_can_register and default_role settings
  • Review web server access logs for suspicious POST requests to /wp-json/ endpoints related to the Sitemap plugin
  • Implement file integrity monitoring on WordPress core configuration files
  • Deploy web application firewall (WAF) rules to detect and block CSRF attacks targeting REST endpoints

Monitoring Recommendations

  • Enable WordPress audit logging to track all option changes with user attribution
  • Configure alerts for new administrator account creation events
  • Monitor REST API endpoint access patterns for anomalous request volumes
  • Review plugin activity logs regularly for unauthorized configuration changes

How to Mitigate CVE-2022-0952

Immediate Actions Required

  • Update the Sitemap by click5 plugin to version 1.0.36 or later immediately
  • Audit all WordPress administrator accounts and remove any unauthorized users
  • Review and reset critical WordPress options including users_can_register and default_role
  • Check access logs for evidence of exploitation attempts prior to patching
  • Consider temporarily disabling the plugin if immediate update is not possible

Patch Information

The vulnerability has been addressed in Sitemap by click5 plugin version 1.0.36 and later. Site administrators should update through the WordPress plugin dashboard or by manually downloading the latest version from the WordPress plugin repository. After updating, verify the plugin version in the WordPress admin panel under Plugins > Installed Plugins.

For additional technical details and vulnerability tracking, consult the WPScan Vulnerability Report.

Workarounds

  • Disable the Sitemap by click5 plugin entirely until the patch can be applied
  • Implement a web application firewall (WAF) rule to block unauthorized requests to plugin REST endpoints
  • Restrict access to WordPress REST API endpoints at the server level using .htaccess or nginx configuration
  • Disable user registration at the server/network level as an additional safeguard
bash
# WordPress .htaccess configuration to restrict REST API access
# Add to .htaccess file in WordPress root directory

# Block unauthenticated access to REST API endpoints
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-json/
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in
RewriteRule ^(.*)$ - [R=403,L]
</IfModule>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSitemap Project

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability89.19%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-352
  • Technical References
  • WPScan Vulnerability Report
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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