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

CVE-2025-23045: CVAT Computer Vision Tool RCE Vulnerability

CVE-2025-23045 is a remote code execution vulnerability in CVAT Computer Vision Annotation Tool affecting serverless tracker functions. Attackers can execute arbitrary code in Nuclio containers. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 1, 2026

CVE-2025-23045 Overview

Computer Vision Annotation Tool (CVAT) is an interactive video and image annotation tool for computer vision. A critical insecure deserialization vulnerability exists in CVAT deployments that run serverless tracker functions, allowing authenticated attackers to execute arbitrary code within the Nuclio function container context.

Critical Impact

Authenticated attackers can achieve remote code execution by exploiting unsafe serialization handling in tracker functions, potentially compromising the entire CVAT deployment and underlying infrastructure.

Affected Products

  • CVAT Computer Vision Annotation Tool versions prior to 2.26.0
  • CVAT deployments running TransT tracker function
  • CVAT deployments running SiamMask tracker function
  • Custom tracker functions using unsafe serialization libraries (pickle, jsonpickle)

Discovery Timeline

  • 2025-01-28 - CVE CVE-2025-23045 published to NVD
  • 2025-09-16 - Last updated in NVD database

Technical Details for CVE-2025-23045

Vulnerability Analysis

This vulnerability is classified as CWE-502 (Deserialization of Untrusted Data). The flaw exists in how CVAT's serverless tracker functions handle state serialization. When tracker functions like TransT and SiamMask process state data, they utilize unsafe serialization libraries such as pickle or jsonpickle that can execute arbitrary code during deserialization.

An attacker with a valid account on the affected CVAT instance can craft malicious serialized payloads that, when processed by the tracker functions, result in arbitrary code execution within the Nuclio function container. This network-accessible vulnerability requires low privileges and no user interaction to exploit.

Root Cause

The root cause lies in the use of inherently unsafe serialization mechanisms for handling tracker state data. Libraries like pickle and jsonpickle are known to be vulnerable to object injection attacks because they can instantiate arbitrary Python objects during deserialization, including objects that execute code upon creation.

The fix implemented in the security patch introduces Django's TimestampSigner for cryptographic signing and validation of serialized data, preventing manipulation of state payloads.

Attack Vector

The attack is network-based and can be executed by any authenticated user on the CVAT platform. The attacker crafts a malicious serialized payload containing code execution primitives and submits it to a tracker function endpoint. When the function deserializes the payload to restore state, the embedded malicious code executes in the context of the Nuclio function container.

The exploitation path involves:

  1. Authenticating to the target CVAT instance
  2. Crafting a malicious pickle/jsonpickle payload with embedded code execution
  3. Submitting the payload to a vulnerable tracker function (TransT or SiamMask)
  4. Achieving code execution when the function deserializes the state
python
 import rq
 from django.conf import settings
 from django.core.exceptions import ObjectDoesNotExist, ValidationError
+from django.core.signing import BadSignature, TimestampSigner
 from drf_spectacular.types import OpenApiTypes
 from drf_spectacular.utils import (
     OpenApiParameter,

Source: GitHub Commit Details

The patch introduces TimestampSigner from Django's cryptographic signing module to validate serialized state data, preventing attackers from injecting malicious payloads.

Detection Methods for CVE-2025-23045

Indicators of Compromise

  • Unusual process spawning from Nuclio function containers
  • Unexpected network connections originating from tracker function containers
  • Anomalous file system modifications within serverless function environments
  • Authentication events followed by tracker function calls with abnormally large or encoded payloads

Detection Strategies

  • Monitor for suspicious Python object instantiation patterns in application logs
  • Implement network segmentation monitoring for Nuclio containers
  • Audit tracker function invocations for unusual payload sizes or encoding
  • Review authentication logs for accounts making repeated tracker function requests

Monitoring Recommendations

  • Enable verbose logging for CVAT lambda manager views
  • Implement application-layer intrusion detection for serialized data patterns
  • Monitor Nuclio function container resource utilization for anomalies
  • Set up alerts for any shell command execution from within function containers

How to Mitigate CVE-2025-23045

Immediate Actions Required

  • Upgrade to CVAT version 2.26.0 or later immediately
  • If upgrade is not possible, shut down TransT and SiamMask function instances
  • Audit custom tracker functions for use of pickle or jsonpickle serialization
  • Review access logs for any suspicious tracker function activity

Patch Information

The vulnerability has been addressed in CVAT version 2.26.0. The security fix is available in commit 563e1dfde64b15fa042b23f9d09cd854b35f0366. The patch introduces Django's TimestampSigner for cryptographic validation of serialized state data, preventing malicious payload injection.

For detailed information, refer to the GitHub Security Advisory and the patch commit.

Workarounds

  • Disable or shut down TransT tracker function instances until patched
  • Disable or shut down SiamMask tracker function instances until patched
  • Review and migrate custom tracker functions to use safe serialization (e.g., JSON with explicit schema validation)
  • Implement network isolation for Nuclio function containers to limit blast radius
bash
# Configuration example
# Shut down vulnerable tracker functions
docker stop cvat_nuclio_TransT
docker stop cvat_nuclio_SiamMask

# Verify no tracker functions are running
docker ps | grep -E "(TransT|SiamMask)"

# After upgrade to 2.26.0+, restart services
docker-compose up -d

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechCvat

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.90%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/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
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-502
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-23526: CVAT Privilege Escalation Vulnerability

  • CVE-2026-23516: CVAT 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