CVE-2019-25456
SQL Injection in Web Ofisi Emlak v2 Enables Data Theft
Publication date: 2026-02-22
Last updated on: 2026-03-02
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| web-ofisi | emlak | 2.0.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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
Web Ofisi Emlak v2 contains an SQL injection vulnerability in the 'ara' GET parameter. This vulnerability allows unauthenticated attackers to inject malicious SQL code into database queries.
Attackers can exploit this by sending specially crafted requests with time-based SQL injection payloads, which can manipulate the database queries to extract sensitive information or disrupt the service.
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.
Additionally, attackers can cause denial of service by exploiting the vulnerability, potentially making the application unavailable to legitimate users.
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 sending specially crafted HTTP GET requests to the vulnerable 'ara' parameter and observing the response time to identify time-based blind SQL injection."}, {'type': 'paragraph', 'content': "A common detection technique involves using a payload that causes a delay in the database response if the injection is successful. For example, the following payload can be appended to the 'ara' parameter:"}, {'type': 'list_item', 'content': "0'XOR(if(now()=sysdate(),sleep(0),0))XOR'Z"}, {'type': 'paragraph', 'content': 'You can use command-line tools like curl or wget to send such requests and measure response times. For example, using curl:'}, {'type': 'list_item', 'content': 'curl -i "http://targetsite/ara.html?ara=0\'XOR(if(now()=sysdate(),sleep(5),0))XOR\'Z"'}, {'type': 'paragraph', 'content': 'If the response is delayed by the sleep duration (e.g., 5 seconds), it indicates the presence of the SQL injection vulnerability.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
I don't know