CVE-2019-25481
SQL Injection in iScripts ReserveLogic Allows Data Extraction
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 |
|---|---|---|
| iscripts | reservelogic | to latest (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-25481 is an SQL injection vulnerability in iScripts ReserveLogic that allows unauthenticated attackers to inject malicious SQL code through the jqSearchDestination parameter in the search endpoint.
Attackers exploit this by sending crafted POST requests with SQL payloads, which manipulate database queries and enable extraction of sensitive information from the database.
This vulnerability is classified under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command) and has a high severity rating.
How can this vulnerability impact me? :
This vulnerability can allow attackers to extract sensitive database information without authentication.
Such unauthorized access can lead to data breaches, exposure of confidential information, and potential manipulation of database contents.
Because the attack requires no privileges or user interaction, it poses a significant security risk to affected systems.
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 /search endpoint targeting the jqSearchDestination parameter with SQL payloads.'}, {'type': 'paragraph', 'content': 'A proof-of-concept payload to test the vulnerability is: jqSearchDestination=(SELECT (CASE WHEN (8124=8124) THEN 12345 ELSE (SELECT 3029 UNION SELECT 1241) END))'}, {'type': 'paragraph', 'content': 'You can use tools like curl or any HTTP client to send a POST request with this payload to check if the application is vulnerable.'}, {'type': 'list_item', 'content': 'Example curl command: curl -X POST -d "jqSearchDestination=(SELECT (CASE WHEN (8124=8124) THEN 12345 ELSE (SELECT 3029 UNION SELECT 1241) END))" https://targetsite.com/search'}, {'type': 'paragraph', 'content': 'If the response contains the injected value (e.g., 12345), it indicates the presence of the SQL injection vulnerability.'}] [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting or filtering input to the jqSearchDestination parameter to prevent SQL injection.
Apply input validation and use parameterized queries or prepared statements in the application code to avoid direct injection of SQL commands.
If available, update iScripts ReserveLogic to a version where this vulnerability is patched.
Additionally, monitor and block suspicious POST requests to the /search endpoint that contain SQL injection payloads.