CVE-2025-6753
BaseFortify
Publication date: 2025-06-27
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
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?
CVE-2025-6753 is a critical SQL injection vulnerability in huija bicycleSharingServer version 1.0. It exists in the function selectAdminByNameLike within AdminController.java, where user input (the 'name' parameter) is improperly handled and directly used in SQL queries without proper sanitization. This allows an attacker to inject malicious SQL code remotely, potentially executing arbitrary database commands. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can allow attackers to execute arbitrary SQL commands on the database with high privileges (the database user is 'root'), leading to unauthorized data access, data manipulation, or disruption of system availability. It compromises the confidentiality, integrity, and availability of the affected system, potentially exposing sensitive information or causing service outages. [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 monitoring for suspicious GET requests to the endpoint /admin-admin-searchadmin-show with unusual or malicious payloads in the 'name' parameter, such as SQL injection patterns (e.g., '1*'). Automated tools like sqlmap can be used to test the endpoint for SQL injection vulnerabilities by targeting the 'name' parameter. Example command using sqlmap: sqlmap -u "http://<target>/bicycleSharingServer_war/admin-admin-searchadmin-show?name=1*" --risk=3 --level=5 --dbs [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the vulnerable admin search functionality endpoint (/admin-admin-searchadmin-show), applying input validation and parameterized queries to prevent SQL injection, and if possible, replacing the affected component with an alternative product as no known countermeasures are currently recommended. Monitoring and blocking suspicious requests targeting the 'name' parameter can also help reduce risk until a patch or fix is applied. [3]