CVE-2019-25488
SQL Injection in Jettweb Hazir Rent A Car Admin Panel
Publication date: 2026-03-12
Last updated on: 2026-03-17
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| jettweb | php_ready_rent_a_car_site_script | 4 |
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': "CVE-2019-25488 is a set of multiple SQL injection vulnerabilities found in the admin panel of Jettweb Hazir Rent A Car Scripti version 4 and earlier. These vulnerabilities allow unauthenticated attackers to manipulate SQL database queries by injecting malicious SQL code into specific GET parameters such as 'tur', 'id', and 'ozellikdil' in the admin/index.php endpoint."}, {'type': 'paragraph', 'content': 'By exploiting these injection points, attackers can extract sensitive information from the database or cause denial of service by manipulating the SQL queries, for example, by causing delays or errors.'}] [1, 2]
How can this vulnerability impact me? :
This vulnerability can have serious impacts including unauthorized access to sensitive database information, which may include user data or other confidential information stored by the application.
Additionally, attackers can cause denial of service conditions by exploiting the SQL injection to delay or disrupt database queries, potentially making the application or its admin panel unavailable.
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 vulnerability can be detected by testing the vulnerable GET parameters ('tur', 'id', and 'ozellikdil') in the admin/index.php endpoint for SQL injection flaws."}, {'type': 'list_item', 'content': 'Use boolean-based SQL injection payloads such as appending "\' AND 2211=2211 AND \'fVeE\'=\'fVeE" to the \'tur\' parameter to confirm vulnerability.'}, {'type': 'list_item', 'content': 'Use time-based blind SQL injection payloads like "2 AND SLEEP(5)" on the \'id\' parameter to detect delays indicating injection.'}, {'type': 'list_item', 'content': 'Test the \'ozellikdil\' parameter with advanced payloads involving XOR and conditional SQL functions, for example: "0\'XOR(if(now()=sysdate()%2Csleep(0)%2C0))XOR\'Z".'}, {'type': 'paragraph', 'content': 'These tests can be performed by sending crafted HTTP GET requests to the admin/index.php endpoint and observing the responses or response times for anomalies.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
[{'type': 'paragraph', 'content': 'Immediate mitigation steps include restricting access to the admin panel to trusted users only, such as by IP whitelisting or authentication enforcement.'}, {'type': 'paragraph', 'content': "Avoid exposing the vulnerable GET parameters ('tur', 'id', 'ozellikdil') to unauthenticated users."}, {'type': 'paragraph', 'content': 'Apply input validation and parameterized queries or prepared statements in the application code to prevent SQL injection.'}, {'type': 'paragraph', 'content': 'If possible, update or patch the Jettweb Hazir Rent A Car Scripti to a version that addresses these vulnerabilities.'}, {'type': 'paragraph', 'content': 'Monitor logs for suspicious requests targeting the vulnerable parameters and consider deploying a web application firewall (WAF) to block SQL injection attempts.'}] [1, 2]