CVE-2025-15204
Cross-Site Scripting in SohuTV CacheCloud QuartzManageController
Publication date: 2025-12-29
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 | * |
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 exists in SohuTV CacheCloud up to version 3.2.0, specifically in the doQuartzList function of the QuartzManageController.java file. It allows an attacker to perform cross-site scripting (XSS) attacks by manipulating the function remotely. This means an attacker can inject malicious scripts that execute in the context of a user's browser.
How can this vulnerability impact me? :
The vulnerability can lead to cross-site scripting attacks, which may allow attackers to execute malicious scripts in users' browsers. This can result in unauthorized actions performed on behalf of users, potential theft of session tokens or sensitive information, and compromise of user interactions with the affected application.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the `/manage/quartz/list` endpoint of SohuTV CacheCloud (up to version 3.2.0) for reflected Cross-Site Scripting (XSS) by injecting malicious scripts into the `query` parameter and observing if the input is improperly encoded and executed. A practical detection method is to send a crafted POST request with an XSS payload in the `query` parameter and check if the script executes or is reflected in the response. For example, using curl or Python requests to send a payload like: `X" tabindex="1" auToFOcus onFOCuS=alert("zast-xss")//` to the endpoint and monitoring the response or browser behavior can confirm the vulnerability. [3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include avoiding use of the vulnerable SohuTV CacheCloud versions up to 3.2.0, as no official patch or fix has been provided. Replacement with an alternative product or disabling access to the vulnerable `/manage/quartz/list` endpoint can reduce risk. Additionally, applying web application firewall (WAF) rules to block malicious input patterns targeting the `query` parameter may help. Since the project has not responded with a fix, restricting access and monitoring for exploitation attempts are recommended. [1]