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-35008

CVE-2026-35008: Open ISES Tickets XSS Vulnerability

CVE-2026-35008 is a reflected XSS flaw in Open ISES Tickets before version 3.44.2 that allows authenticated attackers to inject malicious JavaScript. This post covers technical details, affected versions, and mitigation steps.

Published: May 21, 2026

CVE-2026-35008 Overview

CVE-2026-35008 is a reflected cross-site scripting (XSS) vulnerability in Open ISES Tickets versions prior to 3.44.2. The flaw resides in single.php, where the ticket_id GET parameter is rendered directly into an HTML attribute without sanitization. Authenticated attackers can craft URLs that inject arbitrary JavaScript into the victim's browser session when visited. The issue is tracked under [CWE-79] (Improper Neutralization of Input During Web Page Generation).

Critical Impact

Authenticated attackers can execute arbitrary JavaScript in a victim's browser context, enabling session manipulation, credential theft, and unauthorized actions within the Open ISES Tickets application.

Affected Products

  • Open ISES Tickets versions prior to 3.44.2
  • single.php component (vulnerable ticket_id GET parameter handling)
  • Additional files patched in the same release addressing 69 reflected XSS issues across 22 files

Discovery Timeline

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

Technical Details for CVE-2026-35008

Vulnerability Analysis

The vulnerability stems from unsafe handling of user-controlled input in single.php. The application reads the ticket_id value from the HTTP GET query string and prints it directly into an HTML attribute using PHP's print statement. Because the value is neither type-cast nor HTML-encoded, an attacker can break out of the attribute context with a quote character and inject script payloads.

This is a classic reflected XSS pattern, where the malicious payload is delivered through a crafted URL rather than stored on the server. Exploitation requires authentication, which limits opportunistic attacks but does not prevent abuse by low-privilege users targeting administrators. Successful exploitation can lead to session token theft, forced ticket modifications, and pivoting into other application functions accessible to the victim.

The upstream fix is published in Open ISES Tickets release v3.44.2, which addresses 69 reflected XSS instances across 22 files in a single commit.

Root Cause

The root cause is missing output encoding and missing input validation on parameters consumed from $_GET and $_POST superglobals. Numeric ticket identifiers are passed through unchanged, allowing arbitrary characters including quotes and angle brackets to be reflected into HTML.

Attack Vector

An attacker authenticated to Open ISES Tickets crafts a URL containing a malicious payload in the ticket_id parameter and delivers it to a victim via phishing, chat, or another ticket. When the victim visits the URL, the server reflects the payload into an INPUT attribute, breaking out of the VALUE='' context and executing attacker-controlled JavaScript.

php
// Vulnerable pattern (pre-3.44.2)
<INPUT TYPE='hidden' NAME='ticket_id' VALUE='<?php print $_POST['ticket_id'];?>' />

// Patched pattern in add.php (v3.44.2) — integer cast for numeric IDs
<INPUT TYPE='hidden' NAME='ticket_id' VALUE='<?php print intval($_POST['ticket_id']);?>' />

// Patched pattern in add_facnote.php (v3.44.2) — 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-35008

Indicators of Compromise

  • HTTP GET requests to single.php with ticket_id parameter values containing characters such as ', ", <, >, onerror=, or javascript:
  • Web server access logs showing URL-encoded script tags or event handlers in the ticket_id query string
  • Outbound browser requests from authenticated user sessions to unfamiliar domains immediately after viewing a ticket URL

Detection Strategies

  • Inspect web access logs for non-numeric values in the ticket_id parameter, since legitimate identifiers are integers
  • Deploy WAF rules that flag reflected XSS payload signatures targeting /single.php, /add.php, and /add_facnote.php
  • Correlate authenticated session activity with anomalous DOM-based navigation events in browser telemetry

Monitoring Recommendations

  • Alert on repeated 200-OK responses to single.php requests containing HTML metacharacters in query parameters
  • Track user agents and source IPs that submit malformed ticket_id values across multiple endpoints
  • Review Content Security Policy (CSP) violation reports if CSP is enabled in front of the application

How to Mitigate CVE-2026-35008

Immediate Actions Required

  • Upgrade Open ISES Tickets to version 3.44.2 or later, available at GitHub Release v3.44.2
  • Audit all instances of $_GET and $_POST usage in custom modifications to ensure values are encoded before being printed in HTML
  • Rotate session identifiers and review audit logs for suspicious ticket activity from authenticated users

Patch Information

The upstream fix is delivered in commit ecfeb40 of the openises/tickets repository, included in release v3.44.2. The patch replaces direct printing of $_GET['ticket_id'] and $_POST['ticket_id'] with either intval() for numeric contexts or htmlspecialchars($value, ENT_QUOTES, 'UTF-8') for string contexts. See the VulnCheck Advisory: Reflected XSS for full technical details.

Workarounds

  • Place a web application firewall in front of the application and block requests containing HTML metacharacters in the ticket_id parameter
  • Enforce a strict Content Security Policy that disallows inline scripts and restricts script sources to trusted origins
  • Restrict authenticated access to the Open ISES Tickets application to trusted internal networks until the patch is applied
bash
# Example: pull and deploy the patched release
git clone https://github.com/openises/tickets.git
cd tickets
git checkout v3.44.2
# Verify the fix is present in single.php and related files
grep -n "htmlspecialchars\|intval" single.php add.php add_facnote.php

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 Update

  • GitHub Release v3.44.2

  • VulnCheck Advisory: Reflected XSS
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi 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