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-2025-71165

CVE-2025-71165: Typesetter CMS XSS Vulnerability

CVE-2025-71165 is a reflected cross-site scripting flaw in Typesetter CMS affecting the administrative interface. Attackers can execute malicious scripts in user browsers. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: January 23, 2026

CVE-2025-71165 Overview

CVE-2025-71165 is a reflected cross-site scripting (XSS) vulnerability affecting Typesetter CMS versions up to and including 5.1. The vulnerability exists within the administrative interface's Tools Status functionality, where the path parameter is reflected into the HTML response without proper output encoding in include/admin/Tools/Status.php. An authenticated attacker can supply crafted input containing HTML or JavaScript, resulting in arbitrary script execution in the context of an authenticated user's browser session.

Critical Impact

Successful exploitation allows attackers to execute arbitrary JavaScript in the context of an authenticated administrator's session, potentially leading to session hijacking, administrative account compromise, or further attacks against the CMS infrastructure.

Affected Products

  • Typesetter CMS versions up to and including 5.1
  • All installations with administrative interface accessible to authenticated users
  • Deployments using the Tools Status functionality in include/admin/Tools/Status.php

Discovery Timeline

  • 2026-01-14 - CVE-2025-71165 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2025-71165

Vulnerability Analysis

This reflected XSS vulnerability stems from insufficient output encoding in the Typesetter CMS administrative interface. The path parameter within the Tools Status functionality is directly reflected into the HTML response without sanitization, allowing an attacker to inject malicious scripts. The attack requires the victim to be authenticated with administrative privileges, as the vulnerable endpoint resides within the admin panel. When an administrator clicks a malicious link or is otherwise tricked into accessing a crafted URL, the injected script executes within their authenticated session context.

The vulnerability is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation), which represents a fundamental input validation failure where user-controllable data is inserted into output without proper encoding or escaping.

Root Cause

The root cause of CVE-2025-71165 is the failure to properly encode user-supplied input before reflecting it in the HTML response. Specifically, the path parameter value in include/admin/Tools/Status.php is included in the page output without applying HTML entity encoding or other output escaping mechanisms. This allows special characters such as <, >, and " to be interpreted as HTML markup rather than rendered as plain text.

Attack Vector

The attack is network-based and requires user interaction. An attacker must craft a malicious URL containing JavaScript payload in the path parameter and convince an authenticated administrator to visit the link. This can be accomplished through social engineering techniques such as phishing emails, malicious forum posts, or by embedding the link in other web content.

The attacker constructs a URL targeting the vulnerable Status.php endpoint with a payload embedded in the path parameter. When an authenticated admin clicks the link, the malicious JavaScript executes within their browser session, potentially allowing the attacker to steal session cookies, perform actions as the administrator, modify CMS content, or pivot to other attacks against the underlying infrastructure.

For detailed technical information about this vulnerability, refer to GitHub Typesetter Issue #709 and the VulnCheck Advisory.

Detection Methods for CVE-2025-71165

Indicators of Compromise

  • Suspicious URL requests to /include/admin/Tools/Status.php containing script tags or JavaScript event handlers in the path parameter
  • Access logs showing encoded characters such as %3Cscript%3E or %22onclick%3D in requests to the Tools Status endpoint
  • Unusual administrative session activity following clicks on external or suspicious links
  • Browser console errors or unexpected script execution on administrative pages

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing common XSS payloads in URL parameters
  • Configure intrusion detection systems (IDS) to alert on HTTP requests to Status.php with suspicious parameter values
  • Enable detailed access logging for the administrative interface to identify potential exploitation attempts
  • Deploy browser-based security controls such as Content Security Policy (CSP) to limit script execution sources

Monitoring Recommendations

  • Monitor web server access logs for requests to /include/admin/Tools/ with unusual query string patterns
  • Set up alerts for multiple failed or suspicious requests targeting administrative endpoints
  • Review administrator session activity for anomalous behavior following external link access
  • Implement real-time log analysis to correlate access patterns indicative of social engineering attacks

How to Mitigate CVE-2025-71165

Immediate Actions Required

  • Upgrade Typesetter CMS to a patched version if available from the vendor
  • Restrict access to the administrative interface to trusted networks or IP addresses
  • Implement Content Security Policy (CSP) headers to mitigate the impact of XSS vulnerabilities
  • Educate administrators about the risks of clicking untrusted links while logged into the CMS
  • Consider disabling or restricting access to the Tools Status functionality until a patch is applied

Patch Information

Users should monitor the Typesetter GitHub Repository for security updates addressing this vulnerability. Review GitHub Issue #709 for the latest information on the patch status and recommended remediation steps.

Workarounds

  • Implement a web application firewall (WAF) with XSS filtering rules to block malicious requests
  • Apply input validation and output encoding at the application level if source code modifications are possible
  • Restrict administrative interface access to VPN or internal network connections only
  • Use browser extensions that block script execution from untrusted sources
  • Consider temporarily disabling the vulnerable Tools Status functionality until official patches are available
bash
# Example: Restrict admin access via .htaccess (Apache)
<Directory "/path/to/typesetter/include/admin">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Directory>

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechTypesetter

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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 Typesetter Repository

  • GitHub Typesetter Issue #709

  • VulnCheck Typesetter XSS Advisory
  • Related CVEs
  • CVE-2025-71164: Typesetter CMS XSS Vulnerability

  • CVE-2025-71166: Typesetter CMS 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