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-2026-10737

CVE-2026-10737: WordPress SPDM Auth Bypass Vulnerability

CVE-2026-10737 is an authentication bypass flaw in the SP Project & Document Manager WordPress plugin that allows unauthenticated attackers to access sensitive files. This article covers technical details, affected versions, and mitigation.

Published: June 4, 2026

CVE-2026-10737 Overview

CVE-2026-10737 is a missing authorization vulnerability in the SP Project & Document Manager plugin for WordPress, affecting all versions up to and including 4.71. The flaw resides in the view_file function, which fails to enforce capability checks before exposing file metadata and download links. Unauthenticated attackers can issue a POST request to admin-ajax.php with a valid file ID to retrieve sensitive documents stored inside project folders. The vulnerability is tracked under [CWE-862] (Missing Authorization).

Critical Impact

Unauthenticated remote attackers can enumerate and download arbitrary files stored within project folders, leading to disclosure of confidential client documents.

Affected Products

  • SP Project & Document Manager plugin for WordPress
  • All versions up to and including 4.71
  • WordPress sites exposing the plugin's admin-ajax.php endpoints

Discovery Timeline

  • 2026-06-04 - CVE CVE-2026-10737 published to NVD
  • 2026-06-04 - Last updated in NVD database

Technical Details for CVE-2026-10737

Vulnerability Analysis

The view_file function in the SP Project & Document Manager plugin implements a broken authorization gate. The logic combines a negated nonce check with permission checks using an OR operator. When the nonce is missing or invalid, the negated condition evaluates to true and short-circuits the entire expression, bypassing all preceding capability and ownership validations.

A secondary fallback check only denies access when the parent project ID equals zero, treating root-level files as protected. Files associated with any non-zero project ID remain fully reachable. Unauthenticated callers obtain file metadata and signed download URLs by submitting only a numeric file identifier.

Root Cause

The root cause is faulty boolean logic in the authorization gate. The use of OR-chained conditions with a negated nonce verification inverts the intended security control. Instead of requiring both a valid nonce and an authorized user, the function grants access whenever any branch evaluates favorably, including the failure path of the nonce check.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker sends a crafted POST request to admin-ajax.php containing the view_file action and a target file ID. The server responds with metadata and a download link for the requested file. Attackers iterate through sequential file IDs to enumerate documents stored across all project folders on the host.

The vulnerability mechanism is documented in the WordPress Plugin Code Review and the Wordfence Vulnerability Report.

Detection Methods for CVE-2026-10737

Indicators of Compromise

  • Unauthenticated POST requests to /wp-admin/admin-ajax.php containing the action=view_file parameter
  • Sequential or rapid enumeration of numeric id values within view_file requests from a single source IP
  • Outbound responses from admin-ajax.php containing download URLs referencing the plugin's upload directories

Detection Strategies

  • Inspect web server access logs for POST requests to admin-ajax.php referencing the view_file action without an authenticated session cookie
  • Deploy WAF rules that block unauthenticated invocations of plugin AJAX actions associated with file retrieval
  • Correlate spikes in 200-response file metadata responses with absence of wp_logged_in_* cookies

Monitoring Recommendations

  • Monitor file access patterns within the plugin's storage directory for unusual download volume
  • Alert on repeated admin-ajax.php requests from a single IP iterating through numeric identifiers
  • Track plugin version inventory across hosted WordPress sites to identify vulnerable installations

How to Mitigate CVE-2026-10737

Immediate Actions Required

  • Identify all WordPress instances running the SP Project & Document Manager plugin version 4.71 or earlier
  • Disable or remove the plugin on sites where an updated patched version is not yet available
  • Restrict access to admin-ajax.php for unauthenticated users through firewall or reverse proxy rules where feasible
  • Audit existing file storage directories for evidence of unauthorized download activity

Patch Information

At the time of NVD publication on 2026-06-04, no fixed version is listed in the available references. Administrators should consult the Wordfence Vulnerability Report and the plugin's WordPress.org listing for the latest remediation guidance.

Workarounds

  • Block unauthenticated POST requests to admin-ajax.php with action=view_file at the WAF or reverse proxy layer
  • Move sensitive project files outside the web-accessible directory until a patched plugin version is installed
  • Apply IP allowlisting on /wp-admin/ endpoints for environments that do not require public administrative access
bash
# Example nginx rule to block unauthenticated view_file requests
location = /wp-admin/admin-ajax.php {
    if ($request_method = POST) {
        if ($args ~* "action=view_file") {
            return 403;
        }
    }
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress Plugin Code Review

  • WordPress Plugin Code Review

  • WordPress Plugin Code Review

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-5076: ARMember Premium Auth Bypass Vulnerability

  • CVE-2026-8293: Really Simple Security Auth Bypass Flaw

  • CVE-2026-7459: Simple History Plugin Auth Bypass Flaw

  • CVE-2026-4290: WP Travel Pro Auth Bypass Vulnerability
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