CVE-2025-15174
Cross-Site Scripting in SohuTV CacheCloud doAppAuditList
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 | 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
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 this vulnerability on compliance with common standards and regulations such as GDPR or HIPAA.
Can you explain this vulnerability to me?
This vulnerability is a cross-site scripting (XSS) issue in the doAppAuditList function of the AppManageController.java file in SohuTV CacheCloud up to version 3.2.0. It allows an attacker to perform remote manipulation that can inject malicious scripts into the application.
How can this vulnerability impact me? :
The vulnerability can lead to cross-site scripting attacks, which may allow attackers to execute malicious scripts in the context of the user's browser. This can result in unauthorized actions, such as stealing session tokens, defacing websites, or redirecting users to malicious sites.
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/app/auditList` endpoint of SohuTV CacheCloud (versions up to 3.2.0) for reflected Cross-Site Scripting (XSS) by injecting malicious payloads into user-controllable parameters such as `startDate` and `endDate`. A practical detection method is to send crafted HTTP POST requests with XSS payloads in these parameters and observe if the payload is reflected unencoded in the response, indicating vulnerability. For example, using curl or a Python script to send a POST request with payloads like `<script>alert("zast-xss")</script>` in `startDate` or `endDate` can confirm the issue. The presence of alert pop-ups or reflected script tags in the response confirms the vulnerability. [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include avoiding use of the affected CacheCloud versions (up to 3.2.0) or restricting access to the vulnerable `/manage/app/auditList` endpoint to trusted users only. Since no official patch or fix has been provided yet, consider replacing the affected product or implementing web application firewall (WAF) rules to block malicious payloads targeting the vulnerable parameters. Additionally, ensure proper output encoding and input validation for user-controllable parameters in the application code to prevent XSS. Monitoring and blocking suspicious requests targeting `startDate` and `endDate` parameters can also reduce risk until a fix is available. [1, 2]