CVE-2019-25440
SQL Injection in WebIncorp ERP product_detail.php Allows Data Exposure
Publication date: 2026-02-22
Last updated on: 2026-02-22
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| webincorp | erp | * |
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?
[{'type': 'paragraph', 'content': "This vulnerability is an SQL injection in the WebIncorp ERP software. It occurs because the application does not properly sanitize input in the 'prod_id' parameter of the 'product_detail.php' page, which is accessed via a GET request."}, {'type': 'paragraph', 'content': 'An attacker can inject malicious SQL code through this parameter, manipulating the database queries executed by the application. This allows unauthorized access to sensitive database information.'}] [1]
How can this vulnerability impact me? :
The impact of this vulnerability includes unauthorized access to sensitive data stored in the database, such as confidential business information or user data.
Because the attacker can manipulate SQL queries without authentication, they may extract, modify, or compromise data, potentially leading to data breaches or loss of data integrity.
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 GET requests to the product_detail.php page with malicious input in the prod_id parameter to observe if the application is vulnerable to SQL injection.'}, {'type': 'list_item', 'content': 'Use curl or similar tools to send a request with a single quote appended to the prod_id parameter, for example: curl "http://target/product_detail.php?prod_id=1\'"'}, {'type': 'list_item', 'content': 'If the response contains SQL errors or unexpected behavior, it indicates a possible SQL injection vulnerability.'}, {'type': 'list_item', 'content': 'Automated scanners or SQL injection testing tools can also be used to test the prod_id parameter for injection points.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
I don't know