CVE-2019-25473
SQL Injection in Clinic Pro Monthly_Expense_Overview Endpoint
Publication date: 2026-03-12
Last updated on: 2026-03-12
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| softwebinternational | clinic_pro | to 4 (inc) |
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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2019-25473 is a SQL injection vulnerability in Clinic Pro software that affects the monthly_expense_overview endpoint via the month parameter.
Authenticated attackers can send specially crafted POST requests with malicious month values to manipulate the underlying SQL queries.
This manipulation allows attackers to use boolean-based blind, time-based blind, or error-based SQL injection techniques to extract sensitive information from the database.
How can this vulnerability impact me? :
This vulnerability can allow an attacker with valid user credentials to extract sensitive data from the Clinic Pro database.
Because the attack exploits SQL injection, it can lead to unauthorized disclosure of confidential information.
The CVSS score indicates a high impact on confidentiality, meaning sensitive data could be exposed, but it has low impact on integrity and no impact on availability.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': "This SQL injection vulnerability can be detected by sending crafted POST requests to the monthly_expense_overview endpoint with malicious 'month' parameter values and observing the responses or behavior."}, {'type': 'list_item', 'content': "Boolean-based blind SQL Injection payload example: month=06%' RLIKE (SELECT (CASE WHEN (9435=9435) THEN 06 ELSE 0x28 END)) AND '%'='"}, {'type': 'list_item', 'content': "Time-based blind SQL Injection payload example: month=06%' AND 4514=BENCHMARK(5000000,MD5(0x436d7970)) AND '%'='"}, {'type': 'list_item', 'content': "Error-based SQL Injection payload example: month=06%' AND EXTRACTVALUE(2633,CONCAT(0x5c,0x7178766271,(SELECT (ELT(2633=2633,1))),0x7171717171)) AND '%'='"}, {'type': 'paragraph', 'content': 'These payloads can be sent using tools like curl or specialized SQL injection testing tools to confirm the presence of the vulnerability by checking for differences in response content, delays, or error messages.'}] [2]
What immediate steps should I take to mitigate this vulnerability?
I don't know