CVE-2025-14203
BaseFortify
Publication date: 2025-12-07
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 |
|---|---|---|
| carmelo | question_paper_generator | 1.0 |
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 found in the code-projects Question Paper Generator up to version 1.0, specifically in the /selectquestionuser.php file. It occurs due to manipulation of the 'subid' argument, allowing an attacker to inject malicious SQL code remotely.
How can this vulnerability impact me? :
The vulnerability can allow remote attackers to execute arbitrary SQL commands on the affected system, potentially leading to unauthorized data access, data modification, or disruption of the application's normal operation.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows remote attackers to perform SQL injection, potentially exposing sensitive data such as usernames and passwords. This exposure of sensitive information could lead to non-compliance with data protection regulations like GDPR and HIPAA, which require safeguarding personal and sensitive data. However, no specific compliance impact or regulatory discussion is provided in the available resources. [1, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking if the 'subid' parameter in the /selectquestionuser.php script is vulnerable to SQL injection. One method is to attempt injection payloads such as 'subid=1 OR 1=1--' or 'subid=1 UNION SELECT 1,username,password,4,5 FROM admin--' in HTTP requests to the affected URL. Additionally, Google dorking with queries like 'inurl:selectquestionuser.php' can help identify vulnerable targets. Network monitoring tools can look for suspicious requests containing SQL injection patterns targeting 'subid'. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected software with an alternative product, as no known patches or fixes are currently available. Avoid using the vulnerable version of the Question Paper Generator software. Additionally, applying web application firewall (WAF) rules to block SQL injection attempts targeting the 'subid' parameter can help reduce risk until a secure version or patch is released. [3]