The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-2133

CVE-2025-2133: Ftcms 2.1 XSS Vulnerability

CVE-2025-2133 is a cross-site scripting flaw in Ftcms 2.1 affecting the news edit function that allows remote attackers to inject malicious scripts. This post covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-2133 Overview

A stored Cross-Site Scripting (XSS) vulnerability has been identified in ftcms version 2.1. This vulnerability exists in the administrative news editing functionality, specifically within the /admin/index.php/news/edit endpoint. The flaw allows attackers to inject malicious scripts through the title parameter, which are then executed in the browsers of users viewing the affected content. The vendor was contacted about this disclosure but did not respond.

Critical Impact

Authenticated attackers with administrative privileges can inject persistent malicious scripts that execute in the context of other users' sessions, potentially leading to session hijacking, credential theft, or further administrative actions.

Affected Products

  • ftcms version 2.1
  • ftcms Admin Panel News Management Module
  • Other parameters in the affected endpoint may also be vulnerable

Discovery Timeline

  • 2025-03-10 - CVE-2025-2133 published to NVD
  • 2025-03-11 - Last updated in NVD database

Technical Details for CVE-2025-2133

Vulnerability Analysis

This stored XSS vulnerability occurs in the administrative interface of ftcms, specifically targeting the news editing functionality. When an administrator creates or edits a news article, the title parameter does not undergo proper sanitization or output encoding before being stored in the database and subsequently rendered in web pages.

The attack requires authentication with administrative privileges, meaning an attacker must first compromise an admin account or be an insider threat. Once authenticated, the attacker can inject JavaScript code into the title field which persists in the application's data store. When other users (administrators or potentially public visitors viewing news content) access pages that display the malicious title, the injected script executes in their browser context.

This vulnerability is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation), which covers the entire class of XSS vulnerabilities. The network-accessible attack vector with low complexity makes exploitation straightforward for authenticated attackers.

Root Cause

The root cause of this vulnerability is insufficient input validation and output encoding in the ftcms news management module. The application fails to properly sanitize user-controlled input in the title parameter before storing it in the database, and does not apply appropriate output encoding when rendering this content in HTML pages.

Specifically, the vulnerability stems from:

  • Missing server-side input validation that would reject or sanitize malicious script content
  • Absence of contextual output encoding when rendering the title field in HTML contexts
  • Lack of Content Security Policy (CSP) headers that could provide defense-in-depth against XSS attacks

Attack Vector

The attack is conducted remotely over the network and requires an authenticated session with administrative privileges. The attack flow involves:

  1. An attacker gains access to an administrative account through credential theft, social engineering, or as a malicious insider
  2. The attacker navigates to the news editing interface at /admin/index.php/news/edit
  3. Malicious JavaScript is injected into the title parameter
  4. The crafted payload is stored in the application's database
  5. When other users view pages containing the affected news article, the malicious script executes in their browser

The vulnerability exploitation details have been publicly disclosed. For technical specifics, refer to the GitHub Issue Discussion and VulDB entry #299053.

Detection Methods for CVE-2025-2133

Indicators of Compromise

  • Unusual JavaScript code patterns in news article titles stored in the database
  • Database entries containing <script> tags, event handlers (e.g., onerror, onload), or JavaScript URI schemes in the title field
  • Access logs showing repeated POST requests to /admin/index.php/news/edit with encoded script content
  • User reports of unexpected browser behavior when viewing news content

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block XSS payloads in form submissions to administrative endpoints
  • Deploy database monitoring to alert on storage of HTML/JavaScript content in text fields where such content is not expected
  • Configure browser-based XSS auditors and Content Security Policy (CSP) violation reporting
  • Review application logs for submissions containing common XSS patterns such as <script>, javascript:, or encoded variants

Monitoring Recommendations

  • Enable detailed logging for all administrative actions, particularly content creation and modification
  • Monitor for CSP violation reports which may indicate attempted or successful XSS exploitation
  • Implement anomaly detection for unusual patterns in form field content
  • Regularly audit stored content in the database for suspicious entries

How to Mitigate CVE-2025-2133

Immediate Actions Required

  • Restrict access to the ftcms administrative panel to trusted networks or IP addresses only
  • Implement additional authentication factors for administrative access
  • Deploy a Web Application Firewall (WAF) with XSS protection rules in front of the ftcms installation
  • Audit existing news entries in the database for any malicious content that may have already been injected

Patch Information

No official patch is currently available from the vendor. The vendor was contacted about this vulnerability but did not respond. Organizations using ftcms 2.1 should consider the workarounds listed below and evaluate alternative CMS solutions if the vendor remains unresponsive to security disclosures.

For additional technical details, consult the VulDB entry and VulDB submission.

Workarounds

  • Implement input validation at the web server or reverse proxy level to reject requests containing script content
  • Apply output encoding manually by modifying template files to encode user-supplied content before rendering
  • Deploy Content Security Policy (CSP) headers with strict directives to prevent inline script execution
  • Consider implementing an HTML sanitization library at the application level if source code modifications are possible
  • Limit administrative access to the minimum necessary personnel and monitor all administrative activity
bash
# Example Apache mod_security rule to block XSS attempts
SecRule REQUEST_URI "@contains /admin/index.php/news/edit" \
    "chain,id:1001,phase:2,deny,status:403,msg:'Potential XSS in ftcms news edit'"
SecRule ARGS:title "@rx (?i)(<script|javascript:|on\w+\s*=)" \
    "t:none,t:urlDecodeUni,t:htmlEntityDecode"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechFtcms

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:P/VC:N/VI:L/VA:N/SC:N/SI:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Issue Discussion

  • VulDB CTI ID #299053

  • VulDB #299053

  • VulDB Submission #511627
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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