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

CVE-2026-6701: WordPress addfreespace Plugin CSRF Flaw

CVE-2026-6701 is a Cross-Site Request Forgery vulnerability in the WordPress addfreespace plugin that allows attackers to update settings and inject scripts. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-6701 Overview

CVE-2026-6701 is a Cross-Site Request Forgery (CSRF) vulnerability affecting the addfreespace plugin for WordPress in all versions up to and including 0.1.3. The flaw stems from missing or incorrect nonce validation on a plugin function. Unauthenticated attackers can update plugin settings and inject malicious web scripts by tricking a site administrator into clicking a crafted link. The vulnerability is classified under CWE-352: Cross-Site Request Forgery.

Critical Impact

A successful attack lets an unauthenticated remote attacker modify plugin settings and inject persistent web scripts into a WordPress site by abusing an authenticated administrator's session.

Affected Products

  • WordPress addfreespace plugin versions <= 0.1.3
  • WordPress sites running the plugin's trunk branch with the unpatched code paths
  • Any WordPress installation where the plugin is active and accessible to administrators

Discovery Timeline

  • 2026-05-05 - CVE CVE-2026-6701 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-6701

Vulnerability Analysis

The addfreespace plugin exposes a settings update function that processes administrator-submitted data without verifying a valid WordPress nonce. WordPress nonces are single-use tokens that bind a state-changing request to a specific user session and action. When the nonce check is missing or implemented incorrectly, the server cannot distinguish a legitimate administrator submission from a forged cross-origin request.

Because the affected handler also accepts content that is later rendered without sufficient output encoding, an attacker can chain the CSRF primitive with stored script injection. The result is an unauthenticated path to persistent script execution in the context of the WordPress site, conditional on administrator interaction (UI:R).

The vulnerable code paths are documented in the public plugin source at lines 45 and 312 of addfreespace.php, and lines 30, 59, and 83 of addfreespace_functions.php. See the Wordfence Vulnerability Report for additional analysis.

Root Cause

The root cause is the absence or misuse of WordPress nonce validation primitives such as wp_verify_nonce() or check_admin_referer() on a state-changing administrative function. Without these checks, the plugin trusts any authenticated request reaching the handler, regardless of origin.

Attack Vector

The attack is delivered over the network and requires user interaction. An attacker hosts a page or sends a link containing a forged form or auto-submitting JavaScript that targets the vulnerable plugin endpoint. When an authenticated WordPress administrator visits the attacker-controlled resource, the browser submits the request with valid session cookies. The plugin then processes the attacker's payload, which can include script content that is later rendered to site visitors or administrators.

No verified public proof-of-concept exploit code is available. See the WordPress plugin source on Trac for the affected handler.

Detection Methods for CVE-2026-6701

Indicators of Compromise

  • Unexpected modifications to addfreespace plugin settings stored in the WordPress wp_options table.
  • Presence of <script> tags or HTML event handlers within plugin-managed content fields where they were not previously configured.
  • Administrator-originated POST requests to plugin endpoints with Referer headers pointing to external or unrelated domains.

Detection Strategies

  • Review web server access logs for POST requests to addfreespace.php or addfreespace_functions.php that lack a same-origin Referer or contain a _wpnonce parameter that fails validation.
  • Compare current plugin option values against a known-good baseline to identify unauthorized configuration changes.
  • Inspect rendered pages for unexpected inline scripts originating from plugin output.

Monitoring Recommendations

  • Enable WordPress audit logging to record administrator-initiated option changes with timestamps and source IP.
  • Forward web server and WordPress audit logs to a centralized SIEM for correlation against external referer anomalies.
  • Alert on script-like content being written to plugin settings fields.

How to Mitigate CVE-2026-6701

Immediate Actions Required

  • Deactivate and remove the addfreespace plugin from any WordPress site running version 0.1.3 or earlier until a patched release is available.
  • Audit the WordPress wp_options table for plugin entries containing script payloads and remove any injected content.
  • Rotate administrator credentials and invalidate active WordPress sessions if compromise is suspected.

Patch Information

No vendor patch is referenced in the available CVE data. Site operators should monitor the WordPress plugin repository for an updated release that introduces wp_verify_nonce() or check_admin_referer() calls on the affected handlers, and the Wordfence advisory for remediation status.

Workarounds

  • Restrict access to the WordPress administrative interface using IP allowlists at the web server or WAF layer.
  • Deploy a Web Application Firewall rule that blocks cross-origin POST requests to plugin endpoints lacking a valid same-site Referer.
  • Train administrators to avoid clicking unsolicited links while authenticated to the WordPress dashboard.
  • Use a separate browser profile or session for WordPress administration to reduce CSRF exposure.
bash
# Configuration example - Apache rule to block cross-origin POSTs to the plugin
<LocationMatch "/wp-content/plugins/addfreespace/">
    <RequireAll>
        Require method GET HEAD
    </RequireAll>
</LocationMatch>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • WordPress Plugin Code Line 312

  • WordPress Plugin Code Line 45

  • WordPress Functions Code Line 30

  • WordPress Functions Code Line 59

  • WordPress Functions Code Line 83

  • WordPress Plugin Code Line 312 (Trunk)

  • WordPress Plugin Code Line 45 (Trunk)

  • WordPress Functions Code Line 30 (Trunk)

  • WordPress Functions Code Line 59 (Trunk)

  • WordPress Functions Code Line 83 (Trunk)

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6702: WordPress Publish 2 Ping.fm CSRF Vulnerability

  • CVE-2026-6700: DX Sources WordPress Plugin CSRF Flaw

  • CVE-2026-3772: WP Editor Plugin CSRF Vulnerability

  • CVE-2026-3140: WordPress Ultimate Dashboard CSRF Flaw
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