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

CVE-2026-1802: Ziroom ZHOME A0101 RCE Vulnerability

CVE-2026-1802 is a remote code execution flaw in Ziroom ZHOME A0101 1.0.1.0 caused by command injection in the macAddrClone function. This article covers technical details, affected versions, impact, and mitigation.

Published: February 6, 2026

CVE-2026-1802 Overview

A command injection vulnerability has been discovered in Ziroom ZHOME A0101 router firmware version 1.0.1.0. This security flaw affects the macAddrClone function within the file luci\controller\api\zrMacClone.lua. The vulnerability allows remote attackers to inject arbitrary system commands through manipulation of the macType argument, potentially leading to full device compromise.

Critical Impact

Remote command injection vulnerability enables attackers to execute arbitrary commands on vulnerable Ziroom ZHOME A0101 routers without authentication, potentially leading to complete device takeover and network compromise.

Affected Products

  • Ziroom ZHOME A0101 Firmware version 1.0.1.0

Discovery Timeline

  • 2026-02-03 - CVE-2026-1802 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2026-1802

Vulnerability Analysis

This command injection vulnerability (CWE-74) exists in the MAC address cloning functionality of the Ziroom ZHOME A0101 router. The macAddrClone function in zrMacClone.lua fails to properly sanitize the macType parameter before passing it to system shell commands. This allows attackers to inject arbitrary commands by crafting malicious input values that break out of the intended command context.

The vulnerability is particularly concerning because it can be exploited remotely over the network without requiring any authentication or user interaction. Successful exploitation allows attackers to execute commands with the privileges of the web server process, which on embedded IoT devices often runs with elevated permissions.

Root Cause

The root cause of this vulnerability is improper input validation and sanitization in the Lua-based LuCI web interface controller. The macType argument is passed directly to system command execution without adequate escaping or validation, violating the principle of input sanitization. This is a classic injection flaw where user-controlled input is incorporated into a command string without proper encoding.

Attack Vector

The attack can be launched remotely over the network by sending specially crafted HTTP requests to the router's web interface. An attacker would target the MAC cloning API endpoint and inject shell metacharacters or command separators (such as ;, |, or $()) within the macType parameter. Since no authentication appears to be required, any attacker with network access to the router's management interface can exploit this vulnerability.

The exploit has been publicly disclosed and documented, increasing the risk of active exploitation against unpatched devices. For detailed technical analysis, refer to the GitHub CVE Analysis and the VulDB entry #343975.

Detection Methods for CVE-2026-1802

Indicators of Compromise

  • Unusual HTTP requests to the MAC cloning API endpoint containing shell metacharacters or command separators
  • Unexpected outbound network connections from the router to external IP addresses
  • Unauthorized configuration changes or new user accounts on the router
  • Presence of unexpected processes or scripts running on the device

Detection Strategies

  • Monitor HTTP access logs for requests to /api/zrMacClone endpoints with suspicious parameter values
  • Implement network intrusion detection rules to identify command injection patterns in router traffic
  • Deploy web application firewall (WAF) rules to block requests containing shell metacharacters in the macType parameter
  • Conduct regular firmware integrity checks on deployed Ziroom ZHOME devices

Monitoring Recommendations

  • Enable verbose logging on network edge devices to capture all management interface access attempts
  • Implement behavioral analysis to detect anomalous command execution patterns on IoT devices
  • Monitor for unexpected DNS queries or network traffic originating from router devices
  • Set up alerts for any access to the MAC cloning functionality from external networks

How to Mitigate CVE-2026-1802

Immediate Actions Required

  • Restrict network access to the router's web management interface to trusted internal hosts only
  • Implement firewall rules to block external access to the LuCI administrative interface
  • Segment IoT devices like routers from critical network infrastructure
  • Consider disabling the MAC cloning feature if not required for operations

Patch Information

The vendor (Ziroom) was contacted regarding this vulnerability but did not respond. As of the last update on 2026-02-04, no official patch has been released. Organizations should implement the workarounds below and monitor for vendor updates.

For additional technical details and threat intelligence, refer to the VulDB CTI entry and the VulDB submission #741842.

Workarounds

  • Block all external access to the router's web interface using network firewall rules
  • Implement a VPN requirement for any remote management access to the device
  • Deploy an upstream web application firewall to filter malicious requests before they reach the router
  • Consider replacing vulnerable devices with alternative hardware from vendors with active security response programs
bash
# Example iptables rules to restrict management interface access
# Block external access to web interface (adjust interface and IP as needed)
iptables -A INPUT -i eth0 -p tcp --dport 80 -j DROP
iptables -A INPUT -i eth0 -p tcp --dport 443 -j DROP

# Allow management access only from trusted admin subnet
iptables -I INPUT -i eth0 -s 192.168.1.0/24 -p tcp --dport 80 -j ACCEPT
iptables -I INPUT -i eth0 -s 192.168.1.0/24 -p tcp --dport 443 -j ACCEPT

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechZiroom

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability1.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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-74
  • Technical References
  • GitHub CVE Analysis

  • VulDB #343975 (CTI)

  • VulDB #343975

  • VulDB Submission #741842
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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