CVE-2025-14566
BaseFortify
Publication date: 2025-12-12
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 |
|---|---|---|
| kidaze | courseselectionsystem | to 2017-06-18 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a SQL injection flaw in the kidaze CourseSelectionSystem, specifically in an unknown function within the file /Profilers/SProfile/reg.php. By manipulating the argument USN, an attacker can perform SQL injection attacks remotely. The exploit is publicly available, making it easier for attackers to exploit this vulnerability.
How can this vulnerability impact me? :
This vulnerability can allow an attacker to execute arbitrary SQL commands on the database, potentially leading to unauthorized access, data leakage, data modification, or deletion. Since the attack can be performed remotely without authentication, it poses a significant risk to the confidentiality, integrity, and availability of the system's data.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'USN' parameter in the /Profilers/SProfile/reg.php file for SQL injection. A proof-of-concept payload uses a time-based blind SQL injection to cause a delay in server response, for example: `Fullname=1&USN=1' AND (SELECT 9264 FROM (SELECT(SLEEP(5)))KLSz) AND 'sHAY'='sHAY&PASSWORD=1&repassword=1&Email=1&Question=What is your nickname?&Answer=1&submit=`. You can also use sqlmap to test the POST data targeting the 'USN' parameter for SQL injection vulnerabilities. Additionally, Google dorking with the query `inurl:Profilers/SProfile/reg.php` can help identify vulnerable targets. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Use prepared statements with parameter binding to prevent SQL injection by separating SQL code from user input. 2) Implement strict input validation and filtering to ensure user inputs conform to expected formats. 3) Minimize database user permissions by avoiding high-privilege accounts for routine operations. 4) Conduct regular security audits of code and systems to detect and address vulnerabilities promptly. If possible, replace the affected component with an alternative product. [1, 3]