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

CVE-2026-26208: ADB Explorer RCE Vulnerability

CVE-2026-26208 is a remote code execution vulnerability in ADB Explorer caused by insecure deserialization. Attackers can execute arbitrary code via crafted JSON files. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-26208 Overview

CVE-2026-26208 is an Insecure Deserialization vulnerability in ADB Explorer, a fluent UI application for Android Debug Bridge (ADB) on Windows. Prior to Beta 0.9.26020, the application is vulnerable to remote code execution through malicious JSON deserialization. The vulnerability exists because the application deserializes the App.txt settings file using Newtonsoft.Json with TypeNameHandling set to Objects, allowing attackers to supply a crafted JSON file containing a gadget chain (e.g., ObjectDataProvider) to execute arbitrary code when the application launches and subsequently saves its settings.

Critical Impact

An attacker can achieve arbitrary code execution on the victim's system by placing a malicious App.txt settings file in the application's directory. This could lead to complete system compromise, data theft, or installation of malware.

Affected Products

  • ADB Explorer versions prior to Beta 0.9.26020
  • Windows systems running vulnerable ADB Explorer installations

Discovery Timeline

  • 2026-02-13 - CVE-2026-26208 published to NVD
  • 2026-02-13 - Last updated in NVD database

Technical Details for CVE-2026-26208

Vulnerability Analysis

This vulnerability is classified under CWE-502 (Deserialization of Untrusted Data). The core issue stems from the application's use of Newtonsoft.Json's TypeNameHandling.Objects setting when deserializing the App.txt configuration file. This setting instructs the JSON deserializer to include and process type information embedded within the JSON data, which enables the instantiation of arbitrary .NET types during deserialization.

When an attacker crafts a malicious App.txt file containing a serialized gadget chain, the application will automatically deserialize and instantiate these objects upon startup. Common .NET deserialization gadgets like ObjectDataProvider can be leveraged to execute arbitrary system commands or load malicious assemblies.

Root Cause

The root cause of this vulnerability is the unsafe configuration of the Newtonsoft.Json deserializer. By setting TypeNameHandling to Objects, the application allows type metadata embedded in JSON to dictate which .NET types are instantiated during deserialization. This pattern is known to be dangerous when processing untrusted input, as it enables attackers to specify arbitrary types that execute code during their construction or property setting operations.

Attack Vector

The attack vector for CVE-2026-26208 requires local access to the system where ADB Explorer is installed. An attacker must be able to place or modify the App.txt settings file in the application's directory. This could occur through various means:

  1. A malicious application or script running with user privileges could write the malicious settings file
  2. An attacker with physical access to the machine could plant the file
  3. Social engineering could trick a user into downloading and placing a malicious configuration file

When the victim launches ADB Explorer, the application reads and deserializes the App.txt file, triggering the gadget chain and executing the attacker's payload. The vulnerability is particularly dangerous because the malicious code executes in the context of the user running ADB Explorer.

The exploitation leverages well-known .NET deserialization gadgets such as ObjectDataProvider, which can invoke arbitrary methods including System.Diagnostics.Process.Start() to execute system commands. For technical details on the exploitation mechanism, refer to the GitHub Security Advisory GHSA-49qx-wpxj-p4mh.

Detection Methods for CVE-2026-26208

Indicators of Compromise

  • Unexpected modifications to the App.txt settings file in the ADB Explorer installation directory
  • Presence of $type keys within the App.txt JSON file, indicating embedded type metadata
  • References to suspicious .NET types such as ObjectDataProvider, TypeConfuseDelegate, or System.Diagnostics.Process in configuration files
  • Unusual process spawning from the ADB Explorer process

Detection Strategies

  • Monitor file system changes to ADB Explorer's configuration directory for unauthorized modifications
  • Implement application whitelisting to detect unexpected child processes spawned by ADB Explorer
  • Deploy endpoint detection rules to flag JSON files containing known deserialization gadget patterns
  • Use file integrity monitoring (FIM) to detect tampering with application configuration files

Monitoring Recommendations

  • Enable detailed process creation logging (Windows Event ID 4688) with command line auditing
  • Monitor for suspicious parent-child process relationships where ADB Explorer spawns unexpected executables
  • Review application logs for JSON parsing errors that may indicate attempted exploitation
  • Implement behavioral analysis to detect anomalous activity following ADB Explorer execution

How to Mitigate CVE-2026-26208

Immediate Actions Required

  • Update ADB Explorer to Beta 0.9.26020 or later immediately
  • Verify the integrity of existing App.txt configuration files before launching the application
  • Remove any suspicious $type entries from configuration files
  • Consider temporarily uninstalling vulnerable versions until the patch can be applied

Patch Information

The vulnerability has been fixed in ADB Explorer Beta 0.9.26020. The fix involves changing the JSON deserialization settings to prevent arbitrary type instantiation. Users should download the patched version from the official GitHub Release v0.9.26020.

The specific commit addressing this vulnerability can be reviewed at GitHub Commit Details.

Workarounds

  • If unable to update immediately, remove or rename the App.txt file and allow the application to regenerate it with default settings
  • Restrict write permissions on the ADB Explorer installation directory to prevent unauthorized modification of configuration files
  • Run ADB Explorer in a sandboxed environment or virtual machine until the patch is applied
  • Monitor the application's behavior for any signs of compromise if the vulnerable version must be used temporarily
bash
# Verify ADB Explorer version and remove potentially compromised settings
# Check current installation directory for suspicious configuration
dir "%LOCALAPPDATA%\ADB Explorer\App.txt"

# Backup and remove the settings file to force regeneration
move "%LOCALAPPDATA%\ADB Explorer\App.txt" "%LOCALAPPDATA%\ADB Explorer\App.txt.backup"

# Restrict write access to configuration directory (run as Administrator)
icacls "%LOCALAPPDATA%\ADB Explorer" /deny Everyone:(W)

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechAdb Explorer

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.46%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • GitHub Commit Details

  • GitHub Issue Discussion

  • GitHub Release v0.9.26020

  • GitHub Security Advisory GHSA-49qx-wpxj-p4mh
  • Related CVEs
  • CVE-2026-27615: ADB Explorer RCE Vulnerability

  • CVE-2026-26959: ADB Explorer RCE Vulnerability

  • CVE-2026-27115: ADB Explorer 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