CVE-2025-7801
BaseFortify
Publication date: 2025-07-18
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 |
|---|---|---|
| bossoft | crm | 6.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-7801 is a critical SQL injection vulnerability in BossSoft CRM version 6.0, specifically in the file /crm/module/HNDCBas_customPrmSearchDtl.jsp. The vulnerability occurs because the 'cstid' parameter is not properly sanitized, allowing attackers to inject malicious SQL code remotely without authentication. This can lead to unauthorized access to sensitive data or execution of arbitrary commands on the backend database. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to retrieve sensitive user and business data, escalate privileges, execute arbitrary commands on the backend database, and potentially achieve complete compromise of the application and underlying server. Since exploitation requires no authentication and can be done remotely, it poses a high risk to confidentiality, integrity, and availability of your system. [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 checking for the presence of the vulnerable URL path '/crm/module/HNDCBas_customPrmSearchDtl.jsp' and testing the 'cstid' parameter for SQL injection. One can use Google dorking with the query 'inurl:crm/module/HNDCBas_customPrmSearchDtl.jsp' to identify vulnerable targets. Additionally, tools like sqlmap can be used to automate detection and exploitation by targeting the 'cstid' parameter. An example of a crafted GET request to test the vulnerability is: GET /crm/module/HNDCBas_customPrmSearchDtl.jsp?straud=Y&cstid=1';WAITFOR+DELAY+'0:0:2'-- which attempts to introduce a delay to confirm SQL injection. [2, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected component if possible. Additionally, apply parameterized queries (prepared statements) to avoid direct concatenation of user inputs in SQL queries, validate and whitelist all user inputs, and apply least privilege principles to the database account used by the application. Conduct regular code audits and penetration testing to detect and fix similar vulnerabilities. Since no official patches or mitigations are documented, these steps are critical to reduce risk. [2, 3]