CVE-2026-48223
Deferred Deferred - Pending Action
Reflected XSS in Open ISES Tickets

Publication date: 2026-05-21

Last updated on: 2026-05-21

Assigner: VulnCheck

Description
Open ISES Tickets before 3.44.2 contains a reflected cross-site scripting vulnerability in ics213rr.php that allows authenticated attackers to inject arbitrary JavaScript by passing an unsanitized value through the frm_add_str POST parameter directly into an HTML form hidden input value attribute. Attackers can craft a malicious request containing a JavaScript payload that executes in the victim's browser when the response is rendered.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-05-21
Last Modified
2026-05-21
Generated
2026-06-11
AI Q&A
2026-05-21
EPSS Evaluated
2026-06-10
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
openises tickets to 3.44.2 (exc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions
Instant insights powered by AI
Compliance Impact

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.

Executive Summary

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.

Impact Analysis

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.

Detection Guidance

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.
Mitigation Strategies

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.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-48223. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart