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-2021-47774

CVE-2021-47774: Kingdia CD Extractor RCE Vulnerability

CVE-2021-47774 is a buffer overflow vulnerability in Kingdia CD Extractor 3.0.2 that enables remote code execution. Attackers exploit the registration field to gain system control. This article covers technical details, impact, and mitigation.

Published: January 23, 2026

CVE-2021-47774 Overview

CVE-2021-47774 is a buffer overflow vulnerability in Kingdia CD Extractor version 3.0.2 that allows attackers to execute arbitrary code through a maliciously crafted payload in the registration name field. This vulnerability exploits improper input validation, enabling attackers to overwrite the Structured Exception Handler (SEH) and establish a bind shell for remote code execution.

Critical Impact

Successful exploitation of this buffer overflow vulnerability allows attackers to achieve arbitrary code execution on the target system, potentially leading to complete system compromise through bind shell access.

Affected Products

  • Kingdia CD Extractor 3.0.2

Discovery Timeline

  • 2026-01-15 - CVE-2021-47774 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2021-47774

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-Bounds Write), a type of memory corruption vulnerability that occurs when the application writes data past the boundaries of an allocated memory buffer. In Kingdia CD Extractor 3.0.2, the registration name field fails to properly validate the length of user-supplied input, allowing an attacker to submit more than 256 bytes of data.

When the buffer boundary is exceeded, the excess data overwrites critical memory structures, including the Structured Exception Handler (SEH). The SEH is a Windows mechanism for handling exceptions in applications—by overwriting the SEH chain, an attacker can redirect program execution flow to attacker-controlled code when an exception is triggered.

Root Cause

The root cause of this vulnerability is insufficient bounds checking on the registration name input field. The application allocates a fixed-size buffer (256 bytes) for the registration name but does not validate that user input stays within this boundary before copying the data. This allows attackers to supply input exceeding the buffer size, resulting in a classic stack-based buffer overflow condition.

Attack Vector

The attack requires local access with user interaction—specifically, a victim must enter or paste a malicious registration name into the application. An attacker can craft a payload exceeding 256 bytes that includes shellcode designed to establish a bind shell. The payload must be carefully constructed to:

  1. Fill the buffer up to its boundary
  2. Overwrite the SEH with a pointer to attacker-controlled code or a pivot gadget
  3. Include shellcode that executes when the exception handler is invoked

The exploitation technique leverages SEH overwrite, a classic Windows exploitation method that bypasses basic stack protection mechanisms. Technical details and a proof-of-concept are documented in Exploit-DB #50470.

Detection Methods for CVE-2021-47774

Indicators of Compromise

  • Presence of Kingdia CD Extractor 3.0.2 installations on endpoints
  • Unusual network connections originating from the kingdia.exe process, particularly bind shell activity
  • Crash dumps or exception logs from Kingdia CD Extractor indicating access violations or SEH corruption
  • Registry or file artifacts containing unusually long registration name values (>256 bytes)

Detection Strategies

  • Deploy endpoint detection rules to monitor for SEH overwrite patterns and suspicious shellcode execution
  • Implement application allowlisting to prevent execution of legacy, vulnerable software like Kingdia CD Extractor 3.0.2
  • Monitor for anomalous process behavior such as kingdia.exe spawning command shells or establishing network listeners
  • Use memory protection tools to detect stack buffer overflow attempts and SEH manipulation

Monitoring Recommendations

  • Enable Windows Event Logging for application crashes and access violations to capture exploitation attempts
  • Configure SentinelOne behavioral AI to detect post-exploitation activities like bind shell establishment
  • Monitor network traffic for unexpected listening ports that may indicate successful bind shell deployment
  • Implement file integrity monitoring on application directories to detect tampering or payload staging

How to Mitigate CVE-2021-47774

Immediate Actions Required

  • Remove or uninstall Kingdia CD Extractor 3.0.2 from all systems in the environment
  • Audit systems for the presence of this legacy software using endpoint management tools
  • Block execution of kingdia.exe via application control policies
  • Review systems where the application was installed for signs of compromise

Patch Information

No vendor patch is currently available for this vulnerability. Kingdia CD Extractor is legacy software that appears to be abandoned. Users should discontinue use of this application and migrate to actively maintained CD ripping alternatives that receive regular security updates.

Additional product information can be found at the Kingdia CD Extractor Overview.

Workarounds

  • Completely remove Kingdia CD Extractor 3.0.2 from all systems as the primary mitigation
  • If removal is not immediately possible, restrict the application's network access using host-based firewalls to prevent bind shell communication
  • Apply application sandboxing to isolate the vulnerable application from critical system resources
  • Disable or restrict user access to the registration functionality within the application if possible

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechKingdia Cd Extractor

  • SeverityHIGH

  • CVSS Score8.4

  • EPSS Probability0.27%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:A/VC:H/VI:H/VA:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • Kingdia CD Extractor Overview

  • Exploit-DB #50470
  • 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