CVE-2025-15145
Cross-Site Scripting in SohuTV CacheCloud doTotalList Function
Publication date: 2025-12-28
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 is a cross-site scripting (XSS) issue in SohuTV CacheCloud up to version 3.2.0, specifically in the doTotalList function of the TotalManageController.java file. It allows an attacker to remotely inject malicious scripts due to improper handling of input, which can be exploited to execute unauthorized scripts 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 such as session hijacking, defacement, or redirecting users to malicious sites. However, the CVSS scores indicate a relatively low severity, with limited impact on confidentiality and availability, but some impact on integrity.
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/total/list` endpoint of SohuTV CacheCloud for reflected Cross-Site Scripting (XSS) by injecting malicious payloads into the `appParam` parameter and observing if the payload is executed in the browser. A proof-of-concept involves sending a POST request with a crafted `appParam` containing an XSS vector. For example, using curl or a similar tool, you can send a request like: curl -X POST -d 'appParam=<script>alert(1)</script>' https://target/manage/total/list and check if the alert executes. Alternatively, automated web vulnerability scanners that test for reflected XSS on this endpoint can be used. Monitoring web server logs for suspicious requests containing script tags or unusual parameters targeting `/manage/total/list` may also help detect exploitation attempts. [3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable `/manage/total/list` endpoint to trusted users only, as exploitation requires authentication and user interaction. Since no official patches or fixes are available yet, consider replacing SohuTV CacheCloud with an alternative product that is not vulnerable. Additionally, implement web application firewall (WAF) rules to detect and block malicious payloads targeting the `appParam` parameter to prevent XSS attacks. Educate users to be cautious when interacting with the affected interface until a patch is released. [1, 3]