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-2025-9988

CVE-2025-9988: Broadstreet WordPress Auth Bypass Flaw

CVE-2025-9988 is an authentication bypass vulnerability in the Broadstreet WordPress plugin that lets low-privileged users create advertisers without authorization. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2025-9988 Overview

CVE-2025-9988 is a missing authorization vulnerability [CWE-285] in the Broadstreet plugin for WordPress. The flaw resides in the create_advertiser AJAX action, which lacks a capability check. All versions up to and including 1.53.1 are affected. Authenticated users with Subscriber-level access or higher can invoke the action to create advertiser records inside the plugin. The issue does not require user interaction and is exploitable over the network. The vendor addressed the defect in changeset 3524817 published on the WordPress plugin repository.

Critical Impact

Any authenticated WordPress user, including low-privileged Subscriber accounts, can create advertiser entries through an unauthenticated-style AJAX endpoint, undermining the plugin's authorization model.

Affected Products

  • Broadstreet plugin for WordPress, versions up to and including 1.53.1
  • WordPress sites that allow open user registration with default Subscriber role
  • Multi-author WordPress deployments using the Broadstreet ad management plugin

Discovery Timeline

  • 2026-05-13 - CVE-2025-9988 published to the National Vulnerability Database
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2025-9988

Vulnerability Analysis

The Broadstreet plugin exposes a create_advertiser action through the WordPress AJAX handler. WordPress registers AJAX endpoints using wp_ajax_{action} hooks, which authenticate the request but do not enforce a specific capability. The plugin's handler executes the advertiser creation logic without verifying whether the calling user possesses an administrative or editor capability. The result is a broken access control condition classified as Missing Authorization [CWE-285]. Any user that can authenticate to WordPress can issue the AJAX request and modify plugin state.

The impact is limited to integrity of the plugin's advertiser data. Confidentiality and availability are not directly affected. However, attacker-created advertiser records can be used to seed downstream abuse, such as injecting attacker-controlled ad content or polluting reporting data tied to the Broadstreet platform.

Root Cause

The root cause is the absence of a current_user_can() capability check inside the create_advertiser AJAX callback. WordPress relies on plugin developers to gate sensitive actions with explicit role or capability validation. The handler also lacks a granular nonce-to-capability binding, so authentication alone is sufficient to reach the privileged code path.

Attack Vector

An attacker registers or logs into a Subscriber account on a vulnerable WordPress site. The attacker then sends an authenticated POST request to /wp-admin/admin-ajax.php with the action parameter set to create_advertiser and supplies the advertiser fields expected by the handler. The server processes the request and persists the new advertiser. No social engineering or victim interaction is required. The attack succeeds against any site where the plugin is active and user registration or low-privileged accounts exist.

No public proof-of-concept exploit code has been published. Readers can review the patch in the WordPress Changeset Update and the Wordfence Vulnerability Report for technical details.

Detection Methods for CVE-2025-9988

Indicators of Compromise

  • Unexpected advertiser records created in the Broadstreet plugin database tables or dashboard
  • Authenticated POST requests to /wp-admin/admin-ajax.php with action=create_advertiser from non-administrator user sessions
  • Subscriber or Contributor accounts generating AJAX traffic targeting plugin management endpoints

Detection Strategies

  • Audit the Broadstreet plugin admin interface for advertiser entries that do not match known campaigns or business records
  • Parse WordPress access logs for admin-ajax.php requests where the action parameter equals create_advertiser and correlate the source user role
  • Enable WordPress audit logging plugins to record AJAX invocations by user ID and role

Monitoring Recommendations

  • Alert on any privileged plugin AJAX action invoked by users below the Editor role
  • Track creation rate of advertiser objects and trigger review when volume exceeds business baselines
  • Monitor user registrations from anonymizing infrastructure such as VPNs and Tor exit nodes when open registration is enabled

How to Mitigate CVE-2025-9988

Immediate Actions Required

  • Update the Broadstreet plugin to the version published in changeset 3524817, which is the first release after 1.53.1
  • Review existing advertiser records and remove entries that were not created by authorized staff
  • Audit WordPress user accounts and remove unused Subscriber accounts created during the exposure window

Patch Information

The vendor fixed the issue in changeset 3524817 on the WordPress plugin repository. The patch adds a capability check to the create_advertiser AJAX handler so that only users with the appropriate role can create advertisers. Administrators should upgrade through the WordPress plugin updater or by downloading the patched release directly from the WordPress Changeset Update.

Workarounds

  • Disable the Broadstreet plugin until the patched version can be deployed
  • Disable open user registration under Settings → General → Membership to prevent attackers from self-provisioning Subscriber accounts
  • Restrict access to /wp-admin/admin-ajax.php at the web application firewall layer for requests carrying action=create_advertiser from non-administrative sessions
bash
# Web application firewall rule example (ModSecurity)
SecRule REQUEST_URI "@endsWith /wp-admin/admin-ajax.php" \
    "chain,phase:2,deny,status:403,id:1009988,\
    msg:'Block Broadstreet create_advertiser AJAX (CVE-2025-9988)'"
    SecRule ARGS:action "@streq create_advertiser" \
        "chain"
        SecRule REQUEST_HEADERS:Cookie "!@rx wordpress_logged_in_admin"

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

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-285
  • Technical References
  • WordPress Changeset Update

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2025-15369: Xpro Addons Auth Bypass Vulnerability

  • CVE-2026-8610: WordPress TypeSquare Plugin Auth Bypass

  • CVE-2026-8681: WordPress Essential Chat Support Bypass

  • CVE-2025-4202: Multicollab WordPress Auth Bypass 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