CVE-2025-14780
SQL Injection in Xiongwei Smart Catering Cloud Remote Exploit
Publication date: 2025-12-16
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| hangzhou_xiongwei_technology_development_co.,_ltd. | smart_catering_cloud_platform | 2.1.6446.28761 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
| 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-2025-14780 is an SQL injection vulnerability in the Smart Catering Cloud Platform by Hangzhou Xiongwei Technology Development Co., Ltd, specifically in the /dishtrade/dish_trade_detail_get endpoint. The vulnerability arises from improper handling of the 'filter' parameter, allowing an attacker to inject malicious SQL code remotely. This can lead to unauthorized access to sensitive database information, manipulation of SQL queries, and potential escalation of privileges within the system. [1, 2, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can allow an attacker to retrieve sensitive data from the database, manipulate or alter data, escalate permissions, and potentially cause denial of service by delaying database responses. This compromises the confidentiality, integrity, and availability of the affected system, leading to significant security risks. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This SQL injection vulnerability can be detected by testing the 'filter' parameter in the GET request to the endpoint /dishtrade/dish_trade_detail_get for SQL injection flaws. One method is to use time-based blind SQL injection payloads such as: 'and(select*from(select sleep(5))a/**/union/**/select 1)=' to observe delayed responses indicating vulnerability. Tools like SQLMap can be used to automate detection by targeting the 'filter' parameter. Example command with SQLMap: sqlmap -u "http://target/dishtrade/dish_trade_detail_get?filter=TEST" --risk=3 --level=5 --dbs -p filter [3]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been identified for this vulnerability. It is suggested to replace the affected component with an alternative product. Immediate steps include restricting access to the vulnerable endpoint, monitoring for suspicious activity, and applying any available updates or patches from the vendor if released. Additionally, implementing web application firewalls (WAF) to detect and block SQL injection attempts may help reduce risk until a permanent fix is applied. [2]