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
    • 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-14700

CVE-2025-14700: Crafty Controller RCE Vulnerability

CVE-2025-14700 is a remote code execution vulnerability in Craftycontrol Crafty Controller caused by Server Side Template Injection in the Webhook Template component. This article covers technical details, impact, and mitigation.

Published: April 1, 2026

CVE-2025-14700 Overview

An input neutralization vulnerability exists in the Webhook Template component of Crafty Controller that allows a remote, authenticated attacker to perform remote code execution via Server-Side Template Injection (SSTI). This vulnerability enables attackers with valid credentials to inject malicious template directives that are processed server-side, resulting in arbitrary code execution on the underlying system.

Critical Impact

Authenticated attackers can achieve full remote code execution on servers running Crafty Controller through malicious webhook template payloads, potentially compromising Minecraft server infrastructure and connected systems.

Affected Products

  • Crafty Controller 4.6.1
  • craftycontrol crafty_controller

Discovery Timeline

  • 2025-12-17 - CVE-2025-14700 published to NVD
  • 2025-12-23 - Last updated in NVD database

Technical Details for CVE-2025-14700

Vulnerability Analysis

This vulnerability falls under CWE-1336 (Improper Neutralization of Special Elements Used in a Template Engine), a class of flaws where user-controlled input is embedded into template expressions without adequate sanitization. Crafty Controller, a web-based management panel for Minecraft servers, implements webhook functionality that allows administrators to configure notification templates. The Webhook Template component fails to properly neutralize user-supplied input before processing it through the server-side template engine.

When an authenticated user crafts a malicious template payload, the template engine interprets and executes embedded code directives rather than treating them as literal text. This allows attackers to break out of the intended template context and execute arbitrary Python code on the server, as Crafty Controller is built on Python-based frameworks.

Root Cause

The root cause of this vulnerability is improper input neutralization in the Webhook Template processing functionality. The application accepts user-provided template strings and passes them directly to the template rendering engine without sanitizing or escaping special template syntax characters. This allows attackers to inject template directives that are interpreted as executable code rather than static content.

Template engines typically use special delimiters (such as {{, }}, {%, %}) to distinguish code from static text. When user input containing these delimiters is processed without proper escaping, the template engine executes the injected code with the privileges of the web application process.

Attack Vector

The attack is network-based and requires low-privilege authenticated access to the Crafty Controller web interface. An attacker must have valid credentials to access the webhook configuration functionality, but no additional user interaction is required for exploitation. The vulnerability has a changed scope, meaning successful exploitation can impact resources beyond the vulnerable component itself.

The exploitation process involves accessing the webhook template configuration interface and injecting malicious template syntax into template fields. When the webhook is triggered or the template is previewed, the malicious payload is processed by the template engine, resulting in arbitrary code execution. Common SSTI payloads for Python-based template engines leverage built-in classes and methods to achieve command execution.

For detailed technical information and discussion, refer to the GitLab Issue Discussion.

Detection Methods for CVE-2025-14700

Indicators of Compromise

  • Unusual template syntax patterns in webhook configuration fields, particularly containing Python class references like __class__, __mro__, __subclasses__, or __globals__
  • Unexpected child processes spawned by the Crafty Controller application process
  • Anomalous outbound network connections originating from the Crafty Controller server
  • Unauthorized modifications to webhook configurations in the application database

Detection Strategies

  • Monitor webhook template fields for injection patterns such as {{, {%, __class__, __import__, subprocess, or os.popen
  • Implement application-layer logging to capture all webhook template modifications with user attribution
  • Deploy endpoint detection rules to identify Python process spawning unexpected shell commands
  • Audit authentication logs for unusual login patterns targeting accounts with webhook configuration privileges

Monitoring Recommendations

  • Enable verbose logging for all webhook-related operations in Crafty Controller
  • Configure SentinelOne agents to monitor for suspicious process chains originating from Python web application processes
  • Implement file integrity monitoring on Crafty Controller configuration files and directories
  • Set up alerting for any modifications to webhook templates outside of approved change windows

How to Mitigate CVE-2025-14700

Immediate Actions Required

  • Review and audit all existing webhook templates for potentially malicious content
  • Restrict webhook configuration privileges to only trusted administrator accounts
  • Consider temporarily disabling webhook functionality until patches are applied
  • Implement network segmentation to limit the blast radius of potential compromise
  • Monitor Crafty Controller servers for signs of unauthorized access or code execution

Patch Information

Organizations running Crafty Controller 4.6.1 should monitor the GitLab Issue Discussion for official patch releases and upgrade guidance. Apply security updates as soon as they become available from the Crafty Controller development team.

Workarounds

  • Implement strict access controls limiting which users can modify webhook templates
  • Deploy a web application firewall (WAF) with rules to detect and block common SSTI payloads
  • Use network-level restrictions to limit Crafty Controller access to trusted IP addresses only
  • Consider running Crafty Controller in a containerized or sandboxed environment to limit the impact of code execution
  • Regularly backup server configurations and maintain incident response procedures
bash
# Example: Restrict Crafty Controller network access using iptables
# Allow only trusted admin networks to access the web interface
iptables -A INPUT -p tcp --dport 8443 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 8443 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechCrafty Controller

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1336
  • Technical References
  • GitLab Issue Discussion
  • Related CVEs
  • CVE-2026-0963: Crafty Controller RCE Vulnerability

  • CVE-2024-1064: Crafty Controller Host Header DoS Flaw
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