A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-35014

CVE-2026-35014: Open ISES Tickets XSS Vulnerability

CVE-2026-35014 is a reflected cross-site scripting vulnerability in Open ISES Tickets that lets authenticated attackers inject malicious JavaScript. This article covers technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-35014 Overview

CVE-2026-35014 is a reflected cross-site scripting (XSS) vulnerability in Open ISES Tickets versions before 3.44.2. The flaw resides in routes_nm.php, where the ticket_id GET parameter is written directly into the VALUE attribute of a hidden HTML input without sanitization. Authenticated attackers can craft a malicious URL containing a JavaScript payload in the ticket_id parameter. When a victim visits the crafted URL, the payload executes in their browser session. The issue is classified under CWE-79: Improper Neutralization of Input During Web Page Generation.

Critical Impact

Authenticated attackers can execute arbitrary JavaScript in a victim's browser, enabling session theft, UI manipulation, and actions performed under the victim's identity within the Open ISES Tickets application.

Affected Products

  • Open ISES Tickets versions prior to 3.44.2
  • routes_nm.php endpoint accepting the ticket_id GET parameter
  • Additional files patched in the same fix commit, including add.php and add_facnote.php

Discovery Timeline

  • 2026-05-20 - CVE-2026-35014 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-35014

Vulnerability Analysis

The vulnerability is a reflected XSS issue caused by direct insertion of user-controlled input into an HTML attribute. The application reads ticket_id from the request and prints it into a hidden INPUT element's VALUE attribute using print $_POST['ticket_id'] or print $_GET['ticket_id']. Because the value is rendered without HTML encoding, an attacker can break out of the attribute context by injecting a single quote followed by additional HTML or event handler attributes. Authenticated access is required to reach the vulnerable route, which limits the attacker pool but does not prevent cross-user attacks against logged-in operators. Successful exploitation runs attacker-controlled script in the victim's browser under the application origin.

Root Cause

The root cause is missing output encoding on a request parameter reflected into an HTML attribute. The pre-patch code calls print $_POST['ticket_id'] (and print $_GET['ticket_id'] in related files) without applying either integer casting or HTML entity encoding. The same defect pattern occurred across 22 files in the codebase, accounting for 69 reflected XSS sinks fixed in a single commit.

Attack Vector

An attacker constructs a URL or form submission targeting routes_nm.php with a ticket_id value containing a quote-breakout payload such as ' onmouseover='alert(1). The attacker delivers the link to an authenticated user through phishing, chat, or an embedded link in another application. When the victim opens the URL, the server reflects the payload into the hidden input, the browser parses the injected attribute, and the script executes in the victim's session.

php
// Pre-patch (vulnerable) - add.php
<FORM NAME='to_routes' METHOD='get' ACTION='<?php print $_SESSION['routesfile'];?>'>
<INPUT TYPE='hidden' NAME='ticket_id' VALUE='<?php print $_POST['ticket_id'];?>' />
</FORM>

// Post-patch - add.php (integer cast)
<INPUT TYPE='hidden' NAME='ticket_id' VALUE='<?php print intval($_POST['ticket_id']);?>' />

// Post-patch - add_facnote.php (HTML entity encoding)
<INPUT TYPE='hidden' NAME='frm_ticket_id'
       VALUE='<?php print htmlspecialchars($_GET['ticket_id'], ENT_QUOTES, 'UTF-8'); ?>' />

Source: GitHub Commit ecfeb40

Detection Methods for CVE-2026-35014

Indicators of Compromise

  • Requests to routes_nm.php, add.php, or add_facnote.php where the ticket_id parameter contains characters such as <, >, ", ', or substrings like onmouseover=, onerror=, onclick=, or <script.
  • HTTP referers from external domains pointing users into Open ISES Tickets URLs that include encoded JavaScript payloads in ticket_id.
  • Browser console errors or unexpected outbound requests originating from the Open ISES Tickets application origin.

Detection Strategies

  • Inspect web server access logs for non-numeric values in the ticket_id parameter, since the patched code expects an integer.
  • Deploy a web application firewall rule that flags GET or POST parameters named ticket_id containing HTML or JavaScript metacharacters.
  • Review authenticated user sessions for anomalous account actions correlated with visits to crafted routes_nm.php URLs.

Monitoring Recommendations

  • Alert on URL patterns matching routes_nm.php?ticket_id= followed by URL-encoded angle brackets or quote characters.
  • Track repeated requests from the same source IP that probe ticket_id with varying payloads, which suggests XSS fuzzing.
  • Monitor outbound DOM events and CSP violation reports from clients using the application, if Content Security Policy reporting is configured.

How to Mitigate CVE-2026-35014

Immediate Actions Required

  • Upgrade Open ISES Tickets to version 3.44.2 or later, which contains the fix from commit ecfeb40.
  • Restrict access to the application to trusted networks while the patch is rolled out.
  • Educate authenticated operators not to follow unsolicited links into the ticketing application.

Patch Information

The vendor addressed the issue in Open ISES Tickets release v3.44.2. The fix commit titled "Security: Fix 69 reflected XSS vulnerabilities across 22 files" applies intval() to numeric inputs such as ticket_id and htmlspecialchars($value, ENT_QUOTES, 'UTF-8') to string inputs reflected into HTML attributes. See the GitHub Commit Record and the VulnCheck Advisory for Reflected XSS for technical details.

Workarounds

  • Apply a reverse proxy or WAF rule that rejects requests where ticket_id is not strictly numeric.
  • Add a Content Security Policy that disallows inline scripts and event handlers, reducing the impact of reflected payloads.
  • Backport the patch by wrapping reflected ticket_id output with intval() or htmlspecialchars($value, ENT_QUOTES, 'UTF-8') in affected PHP files.
bash
# Example WAF rule (ModSecurity) to block non-numeric ticket_id values
SecRule ARGS:ticket_id "!@rx ^[0-9]+$" \
    "id:1026350140,phase:2,deny,status:400,\
    msg:'CVE-2026-35014: Non-numeric ticket_id parameter blocked',\
    logdata:'ticket_id=%{ARGS.ticket_id}'"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score5.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Commit Record

  • GitHub Release v3.44.2

  • VulnCheck Advisory for Reflected XSS
  • Latest CVEs
  • CVE-2026-9446: Simple POS Inventory System SQLi Flaw

  • CVE-2026-9531: Totolink CA750-PoE RCE Vulnerability

  • CVE-2026-9482: Edimax EW-7438RPn Buffer Overflow Flaw

  • CVE-2026-9562: Student Management System Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English