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

CVE-2026-35016: Open ISES Tickets XSS Vulnerability

CVE-2026-35016 is a reflected cross-site scripting flaw in Open ISES Tickets before version 3.44.2 that allows authenticated attackers to inject malicious JavaScript. This article covers technical details, impact, and mitigation.

Published: May 21, 2026

CVE-2026-35016 Overview

CVE-2026-35016 is a reflected cross-site scripting (XSS) vulnerability in Open ISES Tickets versions before 3.44.2. The flaw exists in search.php, which passes the frm_query POST parameter directly into an HTML input field VALUE attribute without sanitization. Authenticated attackers can inject arbitrary JavaScript by crafting a malicious request containing a payload in the frm_query parameter. The script executes in the victim's browser when the request is submitted. The weakness 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 session, enabling session theft, credential harvesting, and unauthorized actions within the Open ISES Tickets application.

Affected Products

  • Open ISES Tickets versions prior to 3.44.2
  • search.php component processing the frm_query POST parameter
  • Additional 22 files patched in the same release for related reflected XSS issues

Discovery Timeline

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

Technical Details for CVE-2026-35016

Vulnerability Analysis

The vulnerability stems from unsafe handling of user-supplied input in search.php. The application reads the frm_query POST parameter and inserts the raw value into the VALUE attribute of an HTML <INPUT> element. Because PHP does not encode the value before output, an attacker can break out of the attribute context using a quote character followed by JavaScript event handlers or new tags. This is a reflected XSS pattern, meaning the payload is delivered through a crafted request and executed only in the requesting user's session.

The vendor's patch commit fixes 69 reflected XSS issues across 22 files. The fixes apply two distinct sanitization strategies depending on data type: numeric coercion with intval() for identifiers, and htmlspecialchars() encoding for free-form text.

Root Cause

The root cause is missing output encoding when reflecting user input into HTML attributes. The vulnerable code passes $_POST['frm_query'] and similar parameters directly to print statements inside attribute values, trusting client-supplied data.

Attack Vector

Exploitation requires an authenticated session and user interaction. An attacker crafts a request, or social-engineers a victim into submitting a form, that places a JavaScript payload in the frm_query parameter. The server echoes the payload into the rendered page, where the browser executes it in the application's origin.

php
// Patch example from add.php — integer coercion for numeric IDs
// Vulnerable:
<INPUT TYPE='hidden' NAME='ticket_id' VALUE='<?php print $_POST['ticket_id'];?>' />
// Fixed:
<INPUT TYPE='hidden' NAME='ticket_id' VALUE='<?php print intval($_POST['ticket_id']);?>' />

// Patch example from add_facnote.php — HTML entity encoding for text
// Vulnerable:
<INPUT TYPE='hidden' NAME='frm_ticket_id' VALUE='<?php print $_GET['ticket_id']; ?>' />
// Fixed:
<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-35016

Indicators of Compromise

  • HTTP POST requests to search.php containing frm_query values with <script>, onerror=, onload=, or quote-breakout sequences such as '>.
  • Web server access logs showing URL-encoded JavaScript payloads in the frm_query parameter.
  • Browser console errors or unexpected outbound requests from authenticated user sessions to attacker-controlled domains.

Detection Strategies

  • Inspect application access logs for POST bodies to search.php containing reserved HTML characters like ", <, >, or event handler keywords.
  • Deploy a web application firewall (WAF) rule that flags reflected payloads where the request body content also appears in the response body.
  • Review authenticated session activity for anomalous JavaScript execution patterns or unexpected cross-origin requests.

Monitoring Recommendations

  • Enable HTTP request and response logging on the web server fronting Open ISES Tickets and forward logs to a centralized analytics platform.
  • Monitor for spikes in authenticated traffic to search.php originating from a single source IP or session token.
  • Track Content Security Policy (CSP) violation reports if a restrictive CSP is deployed.

How to Mitigate CVE-2026-35016

Immediate Actions Required

  • Upgrade Open ISES Tickets to version 3.44.2 or later, which contains fixes for all 69 reflected XSS issues across 22 files.
  • Review and apply the upstream patch commit ecfeb40 if a binary upgrade is not yet feasible.
  • Invalidate active user sessions after upgrading to ensure no in-flight exploitation persists through stored session tokens.

Patch Information

The vendor released Open ISES Tickets v3.44.2, which remediates the issue by applying intval() to numeric parameters and htmlspecialchars($value, ENT_QUOTES, 'UTF-8') to text parameters before echoing them into HTML attributes. Technical details are documented in the VulnCheck Advisory for XSS.

Workarounds

  • Deploy a WAF rule that blocks POST requests to search.php where frm_query contains HTML metacharacters such as <, >, or ".
  • Apply a strict Content Security Policy that disallows inline scripts and restricts script sources to trusted origins.
  • Restrict access to the Open ISES Tickets application to trusted networks or VPN users until the patch is applied.
bash
# Example ModSecurity rule to block suspicious frm_query payloads
SecRule ARGS:frm_query "@rx (?i)(<script|onerror=|onload=|javascript:|'\s*>)" \
    "id:1035016,phase:2,deny,status:403,log,\
     msg:'CVE-2026-35016: Reflected XSS attempt in frm_query parameter'"

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 for XSS
  • Latest CVEs
  • CVE-2026-9813: FlowIntel SSRF Vulnerability

  • CVE-2026-4377: D-Link DWR-X1820 Auth Bypass Vulnerability

  • CVE-2026-47074: ex_aws_sns Auth Bypass Vulnerability

  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability
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