CVE-2025-15219
Cross-Site Scripting in SohuTV CacheCloud MachineManageController
Publication date: 2025-12-30
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 |
|---|---|---|
| sohutv | cachecloud | 3.2.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-79 | The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. |
| CWE-94 | The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a cross-site scripting (XSS) issue found in SohuTV CacheCloud up to version 3.2.0. It affects the functions doMachineList and doPodList in the MachineManageController.java file. An attacker can remotely exploit this vulnerability by manipulating these functions to inject malicious scripts.
How can this vulnerability impact me? :
The vulnerability can allow an attacker to perform cross-site scripting attacks, which may lead to the execution of malicious scripts in the context of the affected application. This can result in unauthorized actions performed on behalf of users, potential data manipulation, or other security issues. However, the CVSS scores indicate a low to moderate severity with limited impact on confidentiality and availability.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending crafted HTTP POST requests to the vulnerable endpoints and checking for execution of injected JavaScript code. For the `/manage/machine/pod/changelist` endpoint, you can send a POST request with a malicious `ip` parameter containing a script tag that triggers an alert, such as `<SCript>eval('\u0061\u006c\u0065\u0072\u0074("zast-xss")')</ScRIpt>`. Similarly, for the `/manage/machine/list` endpoint, send a POST request with a malicious `realip` parameter containing an XSS payload like `X" tabindex="1" AUTOFoCUS OnFoCus="location='javascript:alert(\"zast-xss\")'//"`. These tests can be performed using tools like curl or Python's requests library. For example, using curl: `curl -X POST -d "ip=<SCript>eval('alert(\"zast-xss\")')</ScRIpt>" http://<target>/manage/machine/pod/changelist` or `curl -X POST -d "tabTag=machine&realip=X\" tabindex=\"1\" AUTOFoCUS OnFoCus=\"location='javascript:alert(\"zast-xss\")'//\"" http://<target>/manage/machine/list`. If the alert box appears in a browser or the response contains the injected script, the vulnerability is present. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
No official patches or vendor responses are currently available for this vulnerability. Immediate mitigation steps include: 1) Avoid using affected versions of SohuTV CacheCloud (up to 3.2.0) and consider upgrading to a non-vulnerable version if available or switching to alternative products. 2) Implement web application firewall (WAF) rules to detect and block malicious input patterns targeting the vulnerable endpoints `/manage/machine/pod/changelist` and `/manage/machine/list`. 3) Apply input validation and output encoding on the server side to neutralize user-controllable parameters such as `ip` and `realip` before rendering them in web pages. 4) Restrict access to the vulnerable endpoints to trusted users only, if possible. 5) Monitor network traffic and logs for suspicious requests that may indicate exploitation attempts. [2]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The provided resources do not contain information regarding the impact of CVE-2025-15219 on compliance with common standards and regulations such as GDPR or HIPAA.