CVE-2025-14538
📋 TL;DR
This is a cross-site scripting (XSS) vulnerability in yangshare warehouseManager 1.1.0 that allows attackers to inject malicious scripts via the Name parameter in the addCustomer function. The vulnerability can be exploited remotely to execute arbitrary JavaScript in victims' browsers. Users running warehouseManager 1.1.0 are affected.
💻 Affected Systems
- yangshare warehouseManager
⚠️ Manual Verification Required
This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.
Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).
🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers could steal session cookies, perform actions as authenticated users, redirect to malicious sites, or install malware on users' systems.
Likely Case
Session hijacking, credential theft, or defacement of the warehouse management interface.
If Mitigated
Limited impact if proper input validation and output encoding are implemented.
🎯 Exploit Status
Exploit details are publicly disclosed in the Gitee issue tracker. Attack requires access to the customer management interface.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Unknown
Vendor Advisory: https://gitee.com/yangshare/warehouseManager/issues/ID9NAU
Restart Required: Yes
Instructions:
1. Monitor the Gitee repository for patches. 2. Apply any available security updates. 3. Restart the warehouseManager service.
🔧 Temporary Workarounds
Input Validation and Sanitization
allImplement server-side validation and HTML encoding for the Name parameter in CustomerManageHandler.java
Implement proper input validation in addCustomer function
Content Security Policy
allImplement CSP headers to restrict script execution
Add Content-Security-Policy header to web server configuration
🧯 If You Can't Patch
- Implement a web application firewall (WAF) with XSS protection rules
- Restrict access to the warehouseManager interface to trusted networks only
🔍 How to Verify
Check if Vulnerable:
Check if warehouseManager version is 1.1.0 and review CustomerManageHandler.java for lack of input sanitization in addCustomer function
Check Version:
Check application version in web interface or configuration files
Verify Fix Applied:
Test the addCustomer function with XSS payloads to ensure they are properly sanitized
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to customer management endpoints with script tags or JavaScript in parameters
Network Indicators:
- HTTP requests containing <script> tags or JavaScript in Name parameter
SIEM Query:
web_requests WHERE url_path CONTAINS 'customer' AND parameters CONTAINS ANY ('<script>', 'javascript:', 'onload=')