CVE-2019-25636
SQL Injection in Zeeways Jobsite CMS Allows Data Extraction
Publication date: 2026-03-24
Last updated on: 2026-04-15
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| zeeways | jobsite_cms | * |
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-25636 is a SQL injection vulnerability in Zeeways Jobsite CMS that allows unauthenticated attackers to inject malicious SQL code through the 'id' GET parameter in several PHP scripts such as news_details.php, jobs_details.php, and job_cmp_details.php."}, {'type': 'paragraph', 'content': 'Attackers exploit this by sending specially crafted requests that manipulate the SQL queries using GROUP BY and CASE statements, enabling them to extract sensitive information from the database.'}] [2, 3]
How can this vulnerability impact me? :
This vulnerability can lead to unauthorized access to sensitive database information by allowing attackers to manipulate SQL queries without authentication.
Because the attack requires no privileges or user interaction and has a low attack complexity, it poses a high risk of data leakage.
The impact includes potential exposure of confidential data, which could lead to further compromise of the application or its 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 HTTP GET requests to the vulnerable PHP scripts (news_details.php, jobs_details.php, job_cmp_details.php) with malicious 'id' parameter values designed to trigger SQL errors or extract information."}, {'type': 'paragraph', 'content': "A proof-of-concept payload to test for this vulnerability is to inject an 'id' parameter value like the following:"}, {'type': 'paragraph', 'content': 'id=-5236" OR 1 GROUP BY CONCAT(0x716a627871,(SELECT (CASE WHEN (5640=5640) THEN 1 ELSE 0 END)),0x71626b6271,FLOOR(RAND(0)*2)) HAVING MIN(0)#'}, {'type': 'paragraph', 'content': 'You can use tools like curl or a web proxy to send requests such as:'}, {'type': 'list_item', 'content': 'curl "http://targetsite/news_details.php?id=-5236%22%20OR%201%20GROUP%20BY%20CONCAT(0x716a627871,(SELECT%20(CASE%20WHEN%20(5640=5640)%20THEN%201%20ELSE%200%20END)),0x71626b6271,FLOOR(RAND(0)*2))%20HAVING%20MIN(0)#"'}, {'type': 'paragraph', 'content': 'If the server responds with SQL errors or unusual output, it indicates the presence of the SQL injection vulnerability.'}] [2, 3]
What immediate steps should I take to mitigate this vulnerability?
I don't know