Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23757

CVE-2026-23757: GFI HelpDesk Stored XSS Vulnerability

CVE-2026-23757 is a stored XSS vulnerability in GFI HelpDesk's Reports module that allows attackers to inject JavaScript through unsanitized report titles. This post covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-23757 Overview

CVE-2026-23757 is a stored cross-site scripting (XSS) vulnerability affecting GFI HelpDesk versions prior to 4.99.10. The vulnerability exists in the Reports module where the title parameter is passed directly to the SWIFT_Report::Create() function without proper HTML sanitization. This allows attackers with low privileges to inject arbitrary JavaScript code into the report title field when creating or editing a report. The malicious payload executes when staff members view and click the affected report link in the Manage Reports interface.

Critical Impact

Authenticated attackers can inject persistent JavaScript payloads that execute in the context of other staff members' sessions, potentially leading to session hijacking, credential theft, or administrative actions performed on behalf of victims.

Affected Products

  • GFI HelpDesk versions before 4.99.10

Discovery Timeline

  • 2026-04-20 - CVE CVE-2026-23757 published to NVD
  • 2026-04-20 - Last updated in NVD database

Technical Details for CVE-2026-23757

Vulnerability Analysis

This stored XSS vulnerability (CWE-79) occurs due to improper neutralization of input during web page generation. The root cause is the absence of input sanitization in the Reports module's title handling functionality. When a user creates or edits a report, the title parameter is accepted and stored without any HTML encoding or validation, allowing malicious script tags or event handlers to be persisted in the database.

The attack requires low privileges (an authenticated user with access to the Reports module) and user interaction (a victim must view and click on the poisoned report link). The stored nature of this vulnerability makes it particularly dangerous as the payload persists and can affect multiple users over time.

Root Cause

The vulnerability stems from the SWIFT_Report::Create() function accepting user-supplied input for the report title without implementing proper output encoding or input sanitization. When the Manage Reports interface renders the list of reports, it displays the stored title values directly in the HTML context, allowing any embedded JavaScript to execute in the victim's browser.

Attack Vector

The attack vector is network-based, requiring an authenticated attacker to navigate to the report creation or editing functionality within GFI HelpDesk. The attacker crafts a report title containing malicious JavaScript code. When another staff member accesses the Manage Reports interface and interacts with the poisoned report entry, the injected script executes within their browser session.

The stored XSS payload can be designed to steal session cookies, perform actions on behalf of the victim, redirect users to phishing pages, or exfiltrate sensitive helpdesk ticket data. Since helpdesk systems often handle sensitive customer information and support requests, successful exploitation could have significant privacy and security implications.

Detection Methods for CVE-2026-23757

Indicators of Compromise

  • Unusual JavaScript content in report title fields within the GFI HelpDesk database
  • Report titles containing HTML tags such as <script>, <img>, or event handlers like onerror, onload
  • Unexpected network requests originating from staff browsers to external domains when viewing the Reports module
  • Session token exfiltration attempts logged by network monitoring systems

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block XSS payloads in POST parameters targeting the Reports module
  • Monitor database fields for report titles containing suspicious HTML or JavaScript patterns
  • Review web server logs for requests to the report creation endpoints with encoded or obfuscated script content
  • Deploy browser-based security controls to detect and alert on cross-origin script execution

Monitoring Recommendations

  • Enable Content Security Policy (CSP) headers to restrict inline script execution and report violations
  • Monitor for unusual session activity following report module access, such as privilege changes or bulk data exports
  • Configure SIEM alerting for patterns consistent with stored XSS exploitation in helpdesk applications
  • Regularly audit report titles and other user-controllable fields for suspicious content

How to Mitigate CVE-2026-23757

Immediate Actions Required

  • Upgrade GFI HelpDesk to version 4.99.10 or later immediately
  • Audit existing report entries in the database for any malicious JavaScript payloads
  • Implement Content Security Policy headers to reduce the impact of any existing stored XSS payloads
  • Consider temporarily restricting access to the Reports module until patching is complete

Patch Information

GFI has released version 4.99.10 which addresses this stored XSS vulnerability. Organizations should upgrade to this version or later to remediate the issue. For detailed release information, see the GFI Product Release Notes. Additional technical details are available in the VulnCheck Advisory for GFI Helpdesk.

Workarounds

  • Implement a Web Application Firewall (WAF) with XSS filtering rules to block malicious payloads targeting the Reports module
  • Deploy strict Content Security Policy headers to prevent inline JavaScript execution
  • Restrict access to the report creation and editing functionality to only essential personnel
  • Manually sanitize existing report titles in the database by HTML-encoding any special characters
bash
# Example: Adding CSP header in Apache configuration
# Add to httpd.conf or .htaccess
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; object-src 'none';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechGfi Helpdesk

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/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
  • GFI Product Release Notes

  • VulnCheck Advisory for GFI Helpdesk
  • Related CVEs
  • CVE-2026-23758: GFI HelpDesk Stored XSS Vulnerability

  • CVE-2026-23756: GFI HelpDesk XSS Vulnerability

  • CVE-2026-23752: GFI HelpDesk Stored XSS Vulnerability

  • CVE-2026-23753: GFI HelpDesk Stored XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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