CVE-2026-48221
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 ics205a.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
Currently, no data is known.
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
Executive Summary

CVE-2026-48221 is a reflected cross-site scripting (XSS) vulnerability found in Open ISES Tickets versions before 3.44.2, specifically in the ics205a.php file.

The vulnerability occurs because the frm_add_str POST parameter is not properly sanitized before being embedded directly into an HTML form's hidden input value attribute.

This allows an authenticated attacker to inject arbitrary JavaScript code that executes in the victim's browser when the server response is rendered.

Impact Analysis

This vulnerability can allow attackers to execute malicious JavaScript in the context of a victim's browser session.

Potential impacts include theft of sensitive information such as session cookies, user impersonation, and performing unauthorized actions on behalf of the victim.

Since the attacker must be authenticated, the risk is limited to users with access, but it still poses a significant security threat.

Detection Guidance

This vulnerability can be detected by testing the ics205a.php endpoint for reflected cross-site scripting via the frm_add_str POST parameter. An authenticated user can send a crafted POST request containing a JavaScript payload in the frm_add_str parameter and observe if the payload is reflected unsanitized in the HTML response.

A possible command to test this using curl might be:

  • curl -X POST -d "frm_add_str=<script>alert('XSS')</script>" https://target-site/ics205a.php --cookie "session=your_auth_cookie" -v

If the response contains the injected script code without proper sanitization, the vulnerability is present.

Mitigation Strategies

The immediate mitigation step is to upgrade Open ISES Tickets to version 3.44.2 or later, where the vulnerability has been patched.

Until the upgrade can be applied, restrict access to the affected ics205a.php page to trusted authenticated users only, and consider implementing web application firewall (WAF) rules to detect and block suspicious payloads in the frm_add_str POST parameter.

Compliance Impact

The provided information does not specify how the reflected cross-site scripting (XSS) vulnerability in Open ISES Tickets affects compliance with common standards and regulations such as GDPR or HIPAA.

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