CVE-2026-48223
Reflected XSS in Open ISES Tickets
Publication date: 2026-05-21
Last updated on: 2026-05-21
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| openises | tickets | to 3.44.2 (exc) |
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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2026-48223 is a reflected cross-site scripting (XSS) vulnerability found in Open ISES Tickets versions before 3.44.2, specifically in the file ics213rr.php.
The vulnerability occurs because the frm_add_str POST parameter is not properly sanitized before being inserted into an HTML form hidden input value attribute. This allows authenticated attackers to inject arbitrary JavaScript code.
When a victim's browser renders the response containing the malicious JavaScript payload, the script executes, potentially leading to unauthorized actions or data exposure.
How can this vulnerability impact me? :
This vulnerability can allow an authenticated attacker to execute arbitrary JavaScript code in the context of a victim's browser session.
Such execution can lead to session hijacking, unauthorized actions performed on behalf of the victim, or theft of sensitive information accessible through the browser.
Because the attacker must be authenticated, the impact is limited to users with valid access, but it still poses a significant risk to user data and application integrity.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability involves reflected cross-site scripting (XSS) via the frm_add_str POST parameter in ics213rr.php, which requires authenticated access. Detection can focus on monitoring HTTP POST requests to the ics213rr.php endpoint containing suspicious or unexpected JavaScript payloads in the frm_add_str parameter.
You can detect potential exploitation attempts by capturing and inspecting HTTP traffic for POST requests to ics213rr.php with the frm_add_str parameter containing script tags or JavaScript code.
Example commands to detect such attempts might include using network traffic analysis tools or web server logs:
- Using grep on web server logs to find suspicious POST requests: grep -i 'frm_add_str=.*<script' /var/log/apache2/access.log
- Using curl to test the endpoint manually with a crafted payload: curl -X POST -d "frm_add_str=<script>alert(1)</script>" https://yourserver/ics213rr.php -b cookie_for_authenticated_session
- Using a web application scanner configured to detect reflected XSS vulnerabilities on authenticated pages.
What immediate steps should I take to mitigate this vulnerability?
The primary mitigation is to upgrade Open ISES Tickets to version 3.44.2 or later, where this vulnerability has been fixed along with many other security issues.
Version 3.44.2 includes patches that sanitize user inputs properly to prevent reflected XSS attacks by applying functions like htmlspecialchars() to user-supplied strings.
If immediate upgrade is not possible, consider restricting access to the vulnerable endpoint to trusted users only and monitoring for suspicious activity.
Additionally, ensure that users are aware of the risk of executing untrusted scripts and consider implementing web application firewall (WAF) rules to block malicious payloads targeting the frm_add_str parameter.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The provided information does not specify any direct impact of the CVE-2026-48223 vulnerability on compliance with common standards and regulations such as GDPR or HIPAA.