CVE-2025-14529
BaseFortify
Publication date: 2025-12-11
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 |
|---|---|---|
| campcodes | retro_basketball_shoes_online_store | 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?
This vulnerability is a SQL injection flaw found in the Campcodes Retro Basketball Shoes Online Store 1.0, specifically in an unknown function within the file /admin/admin_running.php. By manipulating the 'pid' argument, an attacker can inject malicious SQL code. This attack can be initiated remotely and an exploit has already been published.
How can this vulnerability impact me? :
The SQL injection vulnerability can allow an attacker to access, modify, or delete data in the database without authorization. This can lead to data breaches, loss of data integrity, unauthorized data disclosure, and potentially full system compromise depending on the database and application setup.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The SQL injection vulnerability in Campcodes Retro Basketball Shoes Online Store 1.0 allows unauthorized access, modification, and exposure of sensitive data. Such unauthorized data breaches can lead to non-compliance with data protection regulations like GDPR and HIPAA, which require safeguarding personal and sensitive information. Failure to protect data integrity and confidentiality due to this vulnerability could result in violations of these standards and potential legal and financial consequences. [2, 3, 4]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'pid' parameter in the /admin/admin_running.php file for SQL injection flaws. Tools like sqlmap can be used to automate detection. Example payloads for manual testing include Boolean-based blind SQL injection using the RLIKE operator, error-based SQL injection, and time-based blind SQL injection using the SLEEP function. Example payloads are: - pid=68129' RLIKE (SELECT (CASE WHEN (3021=3021) THEN 68129 ELSE 0x28 END))-- - pid=68129' AND (SELECT 9223 FROM(SELECT COUNT(*),CONCAT(0x716a7a7071,(SELECT (ELT(9223=9223,1))),0x7176766271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)-- - pid=68129' AND (SELECT 3688 FROM (SELECT(SLEEP(5)))yKTf)-- [4]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: - Implement prepared statements with parameter binding to separate SQL code from user input. - Apply strict input validation and filtering to ensure inputs conform to expected formats. - Minimize database user permissions by avoiding use of high-privilege accounts (such as root or admin) for routine operations. - Conduct regular security audits to detect and address vulnerabilities promptly. - Consider replacing the affected product or component if a patch is not available. [3, 4]