惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 聂微东
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
博客园 - 司徒正美
博客园 - Franky
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
量子位
博客园 - 叶小钗
博客园_首页
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

Comments for Securelist

MosaicRegressor: Lurking in the Shadows of UEFI Analyzing the vulnerability landscape in Q2 2026 CoolClient backdoor goes deeper: HoneyMyte adds Windows kernel rootkit Kimsuky’s GoldDragon cluster and its C2 operations Project CAV3RN uses Google Apps Script for stealthy C2 in Israel Phishers are hijacking legitimate cloud infrastructure New BitLocker extortion activity: RDP, MSSQL, RMM Abuse How to improve your organization's security based on compromise assessment findings SparkCat crypto stealer in Google Play and App Store How the ToddyCat APT group gains access to Gmail accounts The Gentlemen RaaS: rapid growth and a new ransomware variant Threat landscape for SMBs in 2026: fake AI tools, phishing and more Telegram phishing bots and channels: how it works An unknown actor distributes malicious VBS scripts via WhatsApp Argamal: Malware hidden in hentai games Containers on fire: from container escapes to supply chain attacks What’s in the container? Analyzing vulnerabilities, risks and protection with Kaspersky Container Security and Free Internet Kimsuky targets organizations with PebbleDash-based tools State of ransomware in 2026 Copy Fail: root on virtually any Linux Popular DAEMON Tools software compromised Congratulations, you’ve won! The reality behind online lotteries Operation ShadowHammer: a high-profile supply chain attack ‘Nigerian’ Letters - Now With a Syrian Twist PhantomRPC: A new privilege escalation technique in Windows RPC Operation Triangulation: The last (hardware) mystery Scammers’ delivery service: exclusively dangerous Operation Triangulation: iOS devices targeted with previously unknown malware Anatomy of a Cyber World Global Report 2026
MiniPlasma: detecting exploitation
by Kaspersky · 2026-06-04 · via Comments for Securelist

Threat Response

Threat Response

MiniPlasma: detecting exploitation of a critical unpatched Windows vulnerability

Related Kaspersky Products & Services

posted

minute read

Over the past two months, the anonymous researcher Nightmare Eclipse (also known as Chaotic Eclipse) has publicly released six Windows vulnerabilities complete with ready-to-use exploits, without prior coordination with Microsoft. The most critical of these is MiniPlasma, a zero-day local privilege escalation exploit that grants attackers SYSTEM-level access.

In short

The exploit leverages an old flaw, CVE-2020-17103, which was believed to have been patched back in 2020. Fully updated systems running Windows 11, as well as Windows Server 2022 and 2025, are vulnerable to this attack vector.

Similar to CVE-2020-17103, the MiniPlasma issue is rooted in the Cloud Filter driver and the HsmOsBlockPlaceholderAccess routine.

According to Huntress Labs, attacks exploiting the initial vulnerabilities from the same list as MiniPlasma have been ongoing in the wild since April 10. Microsoft has promised to release a patch for MiniPlasma only on June 9.

Detection by Kaspersky solutions

Kaspersky Managed Detection and Response service detects the exploitation of this vulnerability using the following indicators of attack:

  1. Creation of SymbolLinks in the registry key:
    HKU\\.DEFAULT\\Software\\Policies\\Microsoft\\CloudFiles\\BlockedApps:

    category: registry_set

        product: windows

    detection:

        selection:

            TargetObject|contains: 'Policies\\Microsoft\\CloudFiles\\BlockedApps'

            Details: 'SymbolicLinkValue'

        condition: selection

  2. Tracking the appearance of wermgr.exe outside standard paths:

    category: process_creation

        product: windows

    detection:

        selection:

            TargetFilename|endswith: '\\wermgr.exe'

        filter_system_locations:

            TargetFilename|startswith:

                - 'C:\\Windows\\System32\\'

                - 'C:\\Windows\\SysWOW64\\'

                - 'C:\\Windows\\WinSxS\\'

                - 'C:\\Windows\\servicing\\'

                - 'C:\\$WINDOWS.~BT\\'

                - 'C:\\Windows\\SoftwareDistribution\\'

        condition: selection and not filter_system_locations

  3. Execution of system binaries or their imitations from non-standard directories.
  4. The analyzed PoC uses the .NET library NtApiDotNet by researcher James Forshaw to interact with registry Native APIs. The presence of artifacts or traces of this library’s usage is also an indicator of compromise.

To protect companies using our Kaspersky SIEM system or Kaspersky Extended Detection and Response, we have prepared a correlation rules package designed to detect such malicious activity. The rules are available for download from the products repository. For those developing custom detection rules or conducting threat hunting in the SIEM using Windows events, we recommend monitoring the following activities:

  • Modification of the HKU\.DEFAULT\Software\Policies\Microsoft\CloudFiles\BlockedApps registry key by creating a symbolic link to HKU\.DEFAULT\Volatile Environment. To hunt for this, registry auditing (SACL) must be configured. KUMA query:

    DeviceEventClassID = '4657' AND FileName like '%Policies\Microsoft\CloudFiles\BlockedApps%' AND DeviceCustomString6 = 'SymbolicLinkValue'

  • Execution of the scheduled task \Microsoft\Windows\Windows Error Reporting\QueueReporting. To track Event ID 110, monitoring of the Microsoft-Windows-TaskScheduler/Operational log must be configured. KUMA query:

    DeviceEventClassID = '110' AND SourceProcessName = '\Microsoft\Windows\Windows Error Reporting\QueueReporting'

  • Launching wermgr.exe from a non-standard directory (typically C:\Windows\(System32|SysWOW64), depending on the system. This activity is detected by the “R150_01_Start of a utility with the name of the system process from a folder other than the standard folder” rule, available in the KUMA repository. KUMA query:

    DeviceEventClassID = '4688' AND DestinationProcessName LIKE '%\wermgr.exe' AND NOT (DestinationProcessName = 'C:\Windows\System32\wermgr.exe' OR DestinationProcessName = 'C:\Windows\SysWOW64\wermgr.exe')

  • Execution of a non-standard process spawned by wermgr.exe. KUMA query:

    DeviceEventClassID = '4688' AND SourceProcessName LIKE '%\wermgr.exe'

Note: The provided search queries are applicable when using the default normalizer. We recommend a search depth of at least one month.

The exploitation of the MiniPlasma vulnerability using the published PoC is successfully detected by Kaspersky Next EDR Expert and Kaspersky Extended Detection and Response via the following rules:

  1. Detection of SymbolLinks creation in the \Software\Policies\Microsoft\CloudFiles\BlockedApps key via the suspicious_modification_cloudfiles_symbolic_link_reg rule:
  2. Detection of system utilities appearing outside system directories via the create_file_named_like_system_tool_in_wrong_place rule:
  3. Detection of system binary execution from non-standard directories via the executing_file_named_like_system_tool_in_wrong_place rule:

  4. Detection of .NET library loading from non-standard directories via the load_dotnet_library_by_process_from_non_standard_directory rule:

In addition to these products, Kaspersky Endpoint Security successfully detects and blocks attempts to exploit this vulnerability.

Reports

Cloud Atlas attacks the public sector and diplomatic structures of Russia and Belarus, using ReverseSocks, SSH, and Tor for persistence in infected systems and its new tool, PowerCloud.

Kaspersky researchers analyze a range of new PebbleDash-based tools used in recent Kimsuky campaigns and reveal their connection to the AppleSeed malware cluster.

Kaspersky researchers uncovered malicious wheel packages in PyPI that targeted both Windows and Linux and contained a dropper delivering malware dubbed ZiChatBot. We attribute this activity to OceanLotus APT.

Kaspersky researchers analyze updated CoolClient backdoor and new tools and scripts used in HoneyMyte (aka Mustang Panda or Bronze President) APT campaigns, including three variants of a browser data stealer.