{"id":33095,"date":"2025-12-29T04:36:02","date_gmt":"2025-12-29T04:36:02","guid":{"rendered":"http:\/\/localhost\/?p=33095"},"modified":"2025-12-29T04:36:02","modified_gmt":"2025-12-29T04:36:02","slug":"the-honeymyte-apt-evolves-with-a-kernel-mode-rootkit-and-a-toneshell-backdoor","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=33095","title":{"rendered":"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-29T10:05:13&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/24125431\/SL-HoneyMyte-featured-02-990&#215;400.png)\\n\\n## Overview of the attacks\\n\\nIn mid-2025, we identified a malicious driver file on computer systems in Asia. The driver file is signed with an old, stolen, or leaked digital certificate and registers as a mini-filter driver on infected machines. Its end-goal is to inject a backdoor Trojan into the system processes and provide protection for malicious files, user-mode processes, and registry keys.\\n\\nOur analysis indicates that the final payload injected by the driver is a new sample of the ToneShell backdoor, which connects to the attacker&#8217;s servers and provides a reverse shell, along with other capabilities. The ToneShell backdoor is a tool known to be used exclusively by the HoneyMyte (aka Mustang Panda or Bronze President) APT actor and is often used in cyberespionage campaigns targeting government organizations, particularly in Southeast and East Asia.\\n\\nThe command-and-control servers for the ToneShell backdoor used in this campaign were registered in September 2024 via NameCheap services, and we suspect the attacks themselves to have begun in February 2025. We&#8217;ve observed through our telemetry that the new ToneShell backdoor is frequently employed in cyberespionage campaigns against government organizations in Southeast and East Asia, with Myanmar and Thailand being the most heavily targeted.\\n\\nNotably, nearly all affected victims had previously been infected with other HoneyMyte tools, including the ToneDisk USB worm, PlugX, and older variants of ToneShell. Although the initial access vector remains unclear, it&#8217;s suspected that the threat actor leveraged previously compromised machines to deploy the malicious driver.\\n\\n## Compromised digital certificate\\n\\nThe driver file is signed with a digital certificate from **Guangzhou Kingteller Technology Co., Ltd.** , with a serial number of **08 01 CC 11 EB 4D 1D 33 1E 3D 54 0C 55 A4 9F 7F**. The certificate was valid from August 2012 until 2015.\\n\\nWe found multiple other malicious files signed with the same certificate which didn&#8217;t show any connections to the attacks described in this article. Therefore, we believe that other threat actors have been using it to sign their malicious tools as well. The following image shows the details of the certificate.\\n\\n![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/23183618\/honeymyte-kernel1.png)\\n\\n## Technical details of the malicious driver\\n\\nThe filename used for the driver on the victim&#8217;s machine is **ProjectConfiguration.sys**. The registry key created for the driver&#8217;s service uses the same name, **ProjectConfiguration.**\\n\\nThe malicious driver contains two user-mode shellcodes, which are embedded into the .data section of the driver&#8217;s binary file. The shellcodes are executed as separate user-mode threads. The rootkit functionality protects both the driver&#8217;s own module and the user-mode processes into which the backdoor code is injected, preventing access by any process on the system.\\n\\n### API resolution\\n\\nTo obfuscate the actual behavior of the driver module, the attackers used dynamic resolution of the required API addresses from hash values.\\n\\nThe malicious driver first retrieves the base address of the **ntoskrnl.exe** and **fltmgr.sys** by calling **ZwQuerySystemInformation** with the **SystemInformationClass** set to **SYSTEM_MODULE_INFORMATION**. It then iterates through this system information and searches for the desired DLLs by name, noting the **ImageBaseAddress** of each.\\n\\nOnce the base addresses of the libraries are obtained, the driver uses a simple hashing algorithm to dynamically resolve the required API addresses from **ntoskrnl.exe** and **fltmgr.sys**.\\n\\nThe hashing algorithm is shown below. The two variants of the seed value provided in the comment are used in the shellcodes and the final payload of the attack.\\n\\n![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/23183721\/honeymyte-kernel2.png)\\n\\n### Protection of the driver file\\n\\nThe malicious driver registers itself with the Filter Manager using **FltRegisterFilter** and sets up a pre-operation callback. This callback inspects I\/O requests for **IRP_MJ_SET_INFORMATION** and triggers a malicious handler when certain **FileInformationClass** values are detected. The handler then checks whether the targeted file object is associated with the driver; if it is, it forces the operation to fail by setting **IOStatus** to **STATUS_ACCESS_DENIED**. The relevant **FileInformationClass** values include:\\n\\n  * FileRenameInformation\\n  * FileDispositionInformation\\n  * FileRenameInformationBypassAccessCheck\\n  * FileDispositionInformationEx\\n  * FileRenameInformationEx\\n  * FileRenameInformationExBypassAccessCheck\\n\\n\\n\\nThese classes correspond to file-delete and file-rename operations. By monitoring them, the driver prevents itself from being removed or renamed \u2013 actions that security tools might attempt when trying to quarantine it.\\n\\n### Protection of registry keys\\n\\nThe driver also builds a global list of registry paths and parameter names that it intends to protect. This list contains the following entries:\\n\\n  * **ProjectConfiguration  \\n**\\n  * **ProjectConfiguration\\\\Instances  \\n**\\n  * **ProjectConfiguration Instance**\\n\\n\\n\\nTo guard these keys, the malware sets up a **RegistryCallback** routine, registering it through **CmRegisterCallbackEx**. To do so, it must assign itself an _altitude_ value. Microsoft governs altitude assignments for mini-filters, grouping them into Load Order categories with predefined altitude ranges. A filter driver with a low numerical altitude is loaded into the I\/O stack below filters with higher altitudes. The malware uses a hardcoded starting point of **330024** and creates altitude strings in the format **330024.%l** , where _%l_ ranges from 0 to 10,000.\\n\\nThe malware then begins attempting to register the callback using the first generated altitude. If the registration fails with **STATUS_FLT_INSTANCE_ALTITUDE_COLLISION** , meaning the altitude is already taken, it increments the value and retries. It repeats this process until it successfully finds an unused altitude.\\n\\nThe callback monitors four specific registry operations. Whenever one of these operations targets a key from its protected list, it responds with **0xC0000022 (STATUS_ACCESS_DENIED)** , blocking the action. The monitored operations are:\\n\\n  * **RegNtPreCreateKey  \\n**\\n  * **RegNtPreOpenKey  \\n**\\n  * **RegNtPreCreateKeyEx  \\n**\\n  * **RegNtPreOpenKeyEx**\\n\\n\\n\\nMicrosoft designates the **320000\u2013329999** altitude range for the _FSFilter Anti-Virus_ Load Order Group. The malware&#8217;s chosen altitude exceeds this range. Since filters with lower altitudes sit deeper in the I\/O stack, the malicious driver intercepts file operations before legitimate low-altitude filters like antivirus components, allowing it to circumvent security checks.\\n\\nFinally, the malware tampers with the altitude assigned to **WdFilter** , a key Microsoft Defender driver. It locates the registry entry containing the driver&#8217;s altitude and changes it to **0** , effectively preventing WdFilter from being loaded into the I\/O stack.\\n\\n### Protection of user-mode processes\\n\\nThe malware sets up a list intended to hold protected process IDs (PIDs). It begins with 32 empty slots, which are filled as needed during execution. A status flag is also initialized and set to 1 to indicate that the list starts out empty.\\n\\nNext, the malware uses **ObRegisterCallbacks** to register two callbacks that intercept process-related operations. These callbacks apply to both **OB_OPERATION_HANDLE_CREATE** and **OB_OPERATION_HANDLE_DUPLICATE** , and both use a malicious pre-operation routine.\\n\\nThis routine checks whether the process involved in the operation has a PID that appears in the protected list. If so, it sets the **DesiredAccess** field in the **OperationInformation** structure to 0, effectively denying any access to the process.\\n\\nThe malware also registers a callback routine by calling **PsSetCreateProcessNotifyRoutine**. These callbacks are triggered during every process creation and deletion on the system. This malware&#8217;s callback routine checks whether the parent process ID (PPID) of a process being deleted exists in the protected list; if it does, the malware removes that PPID from the list. This eventually removes the rootkit protection from a process with an injected backdoor, once the backdoor has fulfilled its responsibilities.\\n\\n### Payload injection\\n\\nThe driver delivers two user-mode payloads.\\n\\n**The first payload** spawns an _svchost_ process and injects a small delay-inducing shellcode. The PID of this new _svchost_ instance is written to a file for later use.\\n\\n**The second payload** is the final component \u2013 the ToneShell backdoor \u2013 and is later injected into that same _svchost_ process.\\n\\n**Injection workflow:**\\n\\n![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/23184107\/honeymyte-kernel3.png)\\n\\nThe malicious driver searches for a high-privilege target process by iterating through PIDs and checking whether each process exists and runs under `SeLocalSystemSid`. Once it finds one, it customizes the first payload using random event names, file names, and padding bytes, then creates a named event and injects the payload by attaching its current thread to the process, allocating memory, and launching a new thread.\\n\\nAfter injection, it waits for the payload to signal the event, reads the PID of the newly created _svchost_ process from the generated file, and adds it to its protected process list. It then similarly customizes the second payload (ToneShell) using random event name and random padding bytes, then creates a named event and injects the payload by attaching to the process, allocating memory, and launching a new thread.\\n\\nOnce the ToneShell backdoor finishes execution, it signals the event. The malware then removes the _svchost_ PID from the protected list, waits 10 seconds, and attempts to terminate the process.\\n\\n## ToneShell backdoor\\n\\nThe final stage of the attack deploys **ToneShell** , a backdoor previously linked to operations by the HoneyMyte APT group and discussed in earlier reporting (see Malpedia and MITRE). Notably, this is the first time we&#8217;ve seen ToneShell delivered through a **kernel-mode loader** , giving it protection from user-mode monitoring and benefiting from the rootkit capabilities of the driver that hides its activity from security tools.\\n\\nEarlier ToneShell variants generated a 16-byte GUID using `CoCreateGuid` and stored it as a host identifier. In contrast, this version checks for a file named `C:\\\\ProgramData\\\\MicrosoftOneDrive.tlb`, validating a 4-byte marker inside it. If the file is absent or the marker is invalid, the backdoor derives a new pseudo-random 4-byte identifier using system-specific values (computer name, tick count, and PRNG), then creates the file and writes the marker. This becomes the unique ID for the infected host.\\n\\nThe samples we have analyzed contact two command-and-control servers:\\n\\n  * **avocadomechanism[.]com  \\n**\\n  * **potherbreference[.]com**\\n\\n\\n\\nToneShell communicates with its C2 over raw TCP on port 443 while disguising traffic using **fake TLS headers**. This version imitates the first bytes of a TLS 1.3 record (`0x17 0x03 0x04`) instead of the TLS 1.2 pattern used previously. After this three-byte marker, each packet contains a size field and an encrypted payload.\\n\\n**Packet layout:**\\n\\n  * **Header (3 bytes):** Fake TLS marker\\n  * **Size (2 bytes):** Payload length\\n  * **Payload:** Encrypted with a rolling XOR key\\n\\n\\n\\nThe backdoor supports a set of remote operations, including file upload\/download, remote shell functionality, and session control. The command set includes:\\n\\n**Command ID** | **Description**  \\n&#8212;|&#8212;  \\n0x1 | Create temporary file for incoming data  \\n0x2 \/ 0x3 | Download file  \\n0x4 | Cancel download  \\n0x7 | Establish remote shell via pipe  \\n0x8 | Receive operator command  \\n0x9 | Terminate shell  \\n0xA \/ 0xB | Upload file  \\n0xC | Cancel upload  \\n0xD | Close connection  \\n  \\n## Conclusion\\n\\nWe assess with high confidence that the activity described in this report is linked to the **HoneyMyte** threat actor. This conclusion is supported by the use of the **ToneShell** backdoor as the final-stage payload, as well as the presence of additional tools long associated with HoneyMyte \u2013 such as **PlugX** , and the **ToneDisk** USB worm \u2013 on the impacted systems.\\n\\nHoneyMyte&#8217;s 2025 operations show a noticeable evolution toward using **kernel-mode injectors** to deploy ToneShell, improving both stealth and resilience. In this campaign, we observed a new ToneShell variant delivered through a kernel-mode driver that carries and injects the backdoor directly from its embedded payload. To further conceal its activity, the driver first deploys a small user-mode component that handles the final injection step. It also uses multiple obfuscation techniques, callback routines, and notification mechanisms to hide its API usage and track process and registry activity, ultimately strengthening the backdoor&#8217;s defenses.\\n\\nBecause the shellcode executes entirely in memory, **memory forensics** becomes essential for uncovering and analyzing this intrusion. Detecting the injected shellcode is a key indicator of ToneShell&#8217;s presence on compromised hosts.\\n\\n## Recommendations\\n\\nTo protect themselves against this threat, organizations should:\\n\\n  * Implement robust network security measures, such as firewalls and intrusion detection systems.\\n  * Use advanced threat detection tools, such as endpoint detection and response (EDR) solutions.\\n  * Provide regular security awareness training to employees.\\n  * Conduct regular security audits and vulnerability assessments to identify and remediate potential vulnerabilities.\\n  * Consider implementing a security information and event management (SIEM) system to monitor and analyze security-related data.\\n\\n\\n\\nBy following these recommendations, organizations can reduce their risk of being compromised by the HoneyMyte APT group and other similar threats.\\n\\n## Indicators of Compromise\\n\\n_More indicators of compromise, as well as any updates to these, are available to the customers of ourAPT intelligence reporting service. If you are interested, please contact intelreports@kaspersky.com._\\n\\n36f121046192b7cac3e4bec491e8f1b5 AppvVStram_.sys  \\nfe091e41ba6450bcf6a61a2023fe6c83 AppvVStram_.sys  \\nabe44ad128f765c14d895ee1c8bad777 ProjectConfiguration.sys  \\navocadomechanism[.]com ToneShell C2  \\npotherbreference[.]com ToneShell C2&#8243;,&#8221;published&#8221;:&#8221;2025-12-29T10:00:35&#8243;,&#8221;modified&#8221;:&#8221;2025-12-29T10:00:35&#8243;,&#8221;type&#8221;:&#8221;securelist&#8221;,&#8221;title&#8221;:&#8221;The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;SECURELIST:B5428742768FD8555C1F64A00D7F2C16&#8243;,&#8221;bulletinFamily&#8221;:&#8221;blog&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/securelist.com\/honeymyte-kernel-mode-rootkit\/118590\/&#8221;,&#8221;category_name&#8221;:&#8221;News&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-29T10:05:13&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/24125431\/SL-HoneyMyte-featured-02-990&#215;400.png)\\n\\n## Overview of the attacks\\n\\nIn mid-2025, we identified a malicious driver file on computer systems in Asia. The driver file is signed with an old,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6,8,12,13,33,136,7,11,5],"class_list":["post-33095","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-securelist","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=33095\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-29T10:05:13&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/24125431\/SL-HoneyMyte-featured-02-990&#215;400.png)nn## Overview of the attacksnnIn mid-2025, we identified a malicious driver file on computer systems in Asia. The driver file is signed with an old,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=33095\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-29T04:36:02+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16\",\"datePublished\":\"2025-12-29T04:36:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095\"},\"wordCount\":2315,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"securelist\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=33095#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095\",\"name\":\"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-29T04:36:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=33095\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33095#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=33095","og_locale":"en_US","og_type":"article","og_title":"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-29T10:05:13&#8243;,&#8221;description&#8221;:&#8221;![](https:\/\/media.kasperskycontenthub.com\/wp-content\/uploads\/sites\/43\/2025\/12\/24125431\/SL-HoneyMyte-featured-02-990&#215;400.png)nn## Overview of the attacksnnIn mid-2025, we identified a malicious driver file on computer systems in Asia. The driver file is signed with an old,...","og_url":"https:\/\/zero.redgem.net\/?p=33095","og_site_name":"zero redgem","article_published_time":"2025-12-29T04:36:02+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=33095#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=33095"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16","datePublished":"2025-12-29T04:36:02+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=33095"},"wordCount":2315,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","securelist","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=33095#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=33095","url":"https:\/\/zero.redgem.net\/?p=33095","name":"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-29T04:36:02+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=33095#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=33095"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=33095#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"The HoneyMyte APT evolves with a kernel-mode rootkit and a ToneShell backdoor_SECURELIST:B5428742768FD8555C1F64A00D7F2C16"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/33095","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=33095"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/33095\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=33095"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=33095"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=33095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}