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-2026-3797

CVE-2026-3797: Tiandy Video Surveillance System RCE Flaw

CVE-2026-3797 is a remote code execution vulnerability in Tiandy Video Surveillance System Firmware 7.17.0 caused by unrestricted file upload. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-3797 Overview

A security vulnerability has been identified in Tiandy Video Surveillance System (视频监控平台) version 7.17.0. The vulnerability exists within the uploadFile function located in the file /src/com/tiandy/easy7/core/rest/CLS_REST_File.java. Improper handling of the fileName argument allows attackers to perform unrestricted file uploads, potentially leading to arbitrary code execution on the affected system.

Critical Impact

This unrestricted file upload vulnerability enables remote attackers with low-level access to upload malicious files to the surveillance system, potentially compromising the entire video monitoring infrastructure and enabling further network intrusion.

Affected Products

  • Tiandy Video Surveillance System Firmware 7.17.0
  • Tiandy Video Surveillance System Hardware

Discovery Timeline

  • 2026-03-09 - CVE-2026-3797 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-3797

Vulnerability Analysis

This vulnerability is classified under CWE-434 (Unrestricted Upload of File with Dangerous Type) and CWE-284 (Improper Access Control). The flaw resides in the file upload functionality of the Tiandy Video Surveillance System's REST API implementation. The uploadFile function in CLS_REST_File.java fails to properly validate or sanitize the fileName parameter before processing uploaded files.

The vulnerability allows authenticated attackers with low privileges to upload arbitrary files to the server. Without proper file type validation, extension filtering, or content verification, attackers can upload executable files, web shells, or other malicious content that could be subsequently executed on the target system.

Root Cause

The root cause of this vulnerability is insufficient input validation in the file upload handler. The uploadFile function does not implement adequate security controls to restrict the types of files that can be uploaded. This includes missing validation for:

  • File extension whitelisting or blacklisting
  • MIME type verification
  • File content inspection
  • Filename sanitization to prevent path traversal

The vendor was contacted regarding this disclosure but did not respond, leaving users without official guidance or patches.

Attack Vector

The attack can be initiated remotely over the network. An attacker with valid credentials (low privilege level required) can exploit this vulnerability by sending specially crafted HTTP requests to the vulnerable endpoint. The attack flow typically involves:

  1. Authenticating to the Tiandy Video Surveillance System with minimal privileges
  2. Crafting a malicious file with an executable payload (e.g., JSP web shell)
  3. Submitting the file through the vulnerable uploadFile endpoint with a manipulated fileName parameter
  4. Accessing the uploaded file to trigger code execution

The vulnerability has been publicly disclosed and technical details are available through the VulDB disclosure, increasing the risk of exploitation in the wild.

Detection Methods for CVE-2026-3797

Indicators of Compromise

  • Unexpected files appearing in upload directories, particularly files with executable extensions (.jsp, .jspx, .war, .jar)
  • HTTP POST requests to /rest/file/upload or similar endpoints containing unusual fileName parameters
  • Web shell artifacts or backdoor files in web-accessible directories
  • Anomalous outbound network connections from the surveillance system server

Detection Strategies

  • Monitor HTTP traffic to the Tiandy surveillance system for file upload requests with suspicious file extensions or content types
  • Implement file integrity monitoring on directories where uploaded files are stored
  • Review web server access logs for requests to unexpected files in upload directories
  • Deploy network-based intrusion detection rules to identify web shell communication patterns

Monitoring Recommendations

  • Enable verbose logging on the Tiandy Video Surveillance System to capture all file upload activities
  • Configure SIEM rules to alert on file uploads with executable extensions to the surveillance platform
  • Implement egress filtering and monitor for unusual outbound connections from surveillance system servers
  • Regularly audit user accounts and access levels to identify potential insider threats or compromised credentials

How to Mitigate CVE-2026-3797

Immediate Actions Required

  • Restrict network access to the Tiandy Video Surveillance System to trusted IP addresses only using firewall rules
  • Implement a web application firewall (WAF) to filter malicious file upload attempts
  • Review and remove any suspicious files from upload directories on affected systems
  • Audit user accounts and disable any unnecessary accounts with upload privileges
  • Consider taking the system offline if it contains critical infrastructure until mitigations are in place

Patch Information

No official patch is currently available from Tiandy. The vendor was contacted about this vulnerability but did not respond. Users should monitor the VulDB entry and vendor channels for future security updates.

Workarounds

  • Implement strict network segmentation to isolate the surveillance system from critical network segments
  • Deploy a reverse proxy or WAF in front of the application to enforce file upload restrictions at the network level
  • Configure server-level restrictions to prevent execution of uploaded files in upload directories
  • Implement additional authentication requirements (e.g., MFA) for accessing the surveillance system
  • Consider using application-layer controls to whitelist only specific file types (e.g., image formats) for upload
bash
# Example: Network isolation using iptables
# Restrict access to surveillance system to specific management subnet
iptables -A INPUT -p tcp --dport 80 -s 192.168.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -s 192.168.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP
iptables -A INPUT -p tcp --dport 443 -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/TechTiandy Video Surveillance System

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/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-284

  • CWE-434
  • Technical References
  • Feishu Document Link

  • VulDB CTII ID #349764

  • VulDB ID #349764

  • VulDB Submission #766386
  • Related CVEs
  • CVE-2026-2985: Tiandy Video Surveillance SSRF 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