CVE-2025-15170
Cross-Site Scripting in Advaya GEMS ERP Error Handler
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 |
|---|---|---|
| advaya | gemserp_portal | * |
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 the Advaya Softech GEMS ERP Portal up to version 2.1. It occurs in the Error Message Handler component, specifically in the /home.jsp?isError=true file, where the 'Message' argument can be manipulated. An attacker can exploit this remotely by injecting malicious scripts through this argument.
How can this vulnerability impact me? :
The vulnerability allows an attacker to perform cross-site scripting attacks, which can lead to the execution of malicious scripts in the context of the user's browser. This can result in unauthorized actions such as session hijacking, defacement, or redirection to malicious sites. However, it does not impact confidentiality or availability according to the CVSS scores.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the /home.jsp endpoint with the parameters isError=true and message containing a script payload to check for reflected cross-site scripting (XSS). For example, you can use curl to send a request with a script injection payload and observe if the response reflects the script without proper encoding. A sample command is: curl -v "http://<target>/home.jsp?isError=true&message=<script>alert(1)</script>" and check if the script is executed or reflected in the response. Additionally, web vulnerability scanners that test for reflected XSS can be used against this endpoint. Since the vulnerability is in the message parameter, monitoring logs for suspicious inputs or unexpected script tags in responses can also help detect exploitation attempts. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include avoiding use of the vulnerable Advaya Softech GEMS ERP Portal versions up to 2.1, as no official patches or vendor responses are available. If replacement is not immediately possible, implement web application firewall (WAF) rules to block or sanitize requests containing suspicious script payloads targeting the /home.jsp endpoint with the message parameter. Additionally, restrict user input and apply output encoding or sanitization on the message parameter to prevent script injection. Monitoring and alerting on suspicious activity related to this endpoint is also recommended. Ultimately, consider replacing the affected product with a secure alternative. [1]