Rapuncel Infostealer Disables EDR via Signed Kernel Driver

'Rapuncel' Infostealer Uses Signed Driver to Disable EDR Products

HIGH
September 22, 2026
4m read
MalwareThreat ActorPhishing

Related Entities

Organizations

Other

RapuncelBoryptGrabAlinubx.sys

Full Report

Executive Summary

Security researchers have identified a new, dangerous information stealer named Rapuncel. The malware is being distributed through a sophisticated campaign involving search engine optimization (SEO) poisoning and dozens of fake GitHub repositories impersonating well-known software brands, including LastPass. The primary threat from Rapuncel lies in its ability to neutralize endpoint security controls. It deploys a malicious kernel driver, Alinubx.sys, which has been signed with a valid Microsoft publisher certificate. This driver systematically terminates the processes of 145 different antivirus and EDR products, allowing the infostealer to operate with impunity. The malware then proceeds to exfiltrate a wide range of sensitive data, including browser credentials, cryptocurrency wallets, and application session data.


Threat Overview

The Rapuncel campaign demonstrates a multi-faceted approach to compromising victims. The attackers leverage the trust users place in both search engines and GitHub. By creating fake repositories for popular software and optimizing them for search engines, they lure users into downloading malicious ZIP archives. To evade initial detection, these archives are often bloated to a large size.

The core of the attack is the deployment of a malicious kernel driver. By getting their driver signed by Microsoft (likely by tricking the Windows Hardware Compatibility Program), the attackers significantly lower the barrier to execution on modern Windows systems. This kernel-level access provides the highest level of privilege, allowing the driver to bypass security features like Protected Process Light (PPL) and forcibly terminate EDR and antivirus processes. With the system's defenses down, the Rapuncel infostealer can freely execute its data theft routines.


Technical Analysis

The attack chain is as follows:

  1. Initial Access: The victim searches for popular software and is directed by a search engine to a fake, SEO-optimized GitHub repository (T1566.002 - Spearphishing Link).
  2. Payload Delivery: The user downloads a large ZIP archive from a payload server linked from the repository. The archive contains a legitimate, renamed Microsoft debugging executable and a malicious companion DLL.
  3. Execution & Defense Evasion: When the executable is run, it side-loads the malicious DLL (T1574.002 - DLL Side-Loading). This DLL is responsible for dropping and installing the malicious kernel driver, Alinubx.sys.
  4. Security Software Disabling: The Alinubx.sys driver, running with kernel-level privileges, iterates through a hardcoded list of 145 security product processes and terminates them (T1562.001 - Impair Defenses: Disable or Modify Tools). It is capable of killing even PPL-protected processes.
  5. Credential Theft: With defenses disabled, the Rapuncel infostealer module executes. It targets:
    • Credentials from over 25 web browsers. To bypass modern browser encryption, it injects a helper DLL into the browser process to call its internal decryption functions (T1056.004 - Credential API Hooking).
    • Data from 30 different cryptocurrency wallets.
    • Session tokens from Discord, Steam, and Telegram.
    • Data from the Windows Credential Manager.
    • Screenshots and system information (T1113 - Screen Capture).
  6. Persistence & Exfiltration: The malware establishes persistence via a Windows service (T1543.003 - Create or Modify System Process: Windows Service). The stolen data is compressed and exfiltrated to a C2 server.

Researchers believe Rapuncel may be a variant of the BoryptGrab malware family.


Impact Assessment

The impact of a Rapuncel infection is severe. The theft of browser credentials, cryptocurrency wallets, and application session tokens can lead to significant financial loss and identity theft. For corporate victims, the compromise of a single endpoint can be a gateway to a much larger breach, especially if stolen credentials provide access to VPNs, cloud services, or other corporate resources. The malware's ability to disable EDR and antivirus tools means that infections may go undetected for extended periods, allowing attackers ample time to pivot and exfiltrate more data. The use of a signed driver represents a significant threat to the Windows security model, as it abuses a trusted verification process.


IOCs — Directly from Articles

Type
file_name
Value
Alinubx.sys
Description
The malicious, Microsoft-signed kernel driver used to disable security products.

Cyber Observables — Hunting Hints

Security teams may want to hunt for the following patterns to detect Rapuncel or similar threats:

Type
log_source
Value
Driver Load Events (Event ID 601)
Description
Monitor for the loading of the Alinubx.sys driver or any other newly observed, third-party signed drivers.
Context
System Event Log
Confidence
high
Type
process_name
Value
MsMpEng.exe, SavService.exe, CSFalconService.exe
Description
Sudden, unexpected termination of core EDR/AV service processes.
Context
EDR / Process monitoring logs
Confidence
high
Type
command_line_pattern
Value
rundll32.exe with unusual DLLs
Description
The initial payload may use rundll32.exe to execute the side-loaded DLL. Look for executions with DLLs in temporary or download folders.
Context
Process creation logs (Event ID 4688)
Confidence
medium
Type
other
Value
Microsoft-signed driver revocation lists
Description
Monitor Microsoft's driver blocklist updates for the certificate used to sign Alinubx.sys.
Context
Threat Intelligence Feeds
Confidence
high

Detection & Response

Detection:

  • Driver Monitoring: Use EDR or system monitoring tools to audit and alert on the loading of new kernel drivers, especially those signed by third parties. Cross-reference driver hashes and signing certificates against threat intelligence. This is a form of D3FEND's Driver Load Integrity Checking (D3-DLIC).
  • Tamper Protection: Ensure that the tamper protection features of your EDR/AV solution are enabled and configured to the highest level. While this driver can bypass some protections, it may still generate alerts.
  • Behavioral Analysis: Monitor for the mass termination of security processes. This is a high-confidence indicator of a defense evasion tool at work. D3FEND's Process Analysis (D3-PA) is crucial for this.

Response:

  1. Isolate the affected endpoint immediately.
  2. If the driver has been loaded, a simple reboot may not be sufficient. Consider taking a forensic image for analysis.
  3. Assume all credentials stored on the machine have been compromised. Initiate a full credential reset for the user.
  4. Re-image the machine from a known-good source to ensure all components of the malware are removed.

Mitigation

  • User Training: Train users to be wary of search engine results and to verify the authenticity of GitHub repositories before downloading software. Teach them to look for signs of a fake repository, such as a lack of history, few stars, or no community interaction (M1017 - User Training).
  • Application Control: Use application control solutions like Windows Defender Application Control (WDAC) to restrict not only which applications can run, but also which kernel drivers can be loaded. This is a powerful defense against malicious signed drivers (M1038 - Execution Prevention).
  • Attack Surface Reduction (ASR): Implement ASR rules to block credential stealing from the Windows local security authority subsystem service (LSASS) and to block process injections.
  • Driver Block Rules: Proactively add known malicious drivers like Alinubx.sys to a blocklist within your security tools or via WDAC.

Timeline of Events

1
September 22, 2026
This article was published

MITRE ATT&CK Mitigations

Use application control policies like WDAC to create a whitelist of trusted kernel drivers, preventing malicious ones like Alinubx.sys from loading.

Ensure EDR/AV solutions have tamper protection enabled to resist termination attempts.

Educate users about the risks of downloading software from unverified sources, even on trusted platforms like GitHub.

Enable Windows Defender Credential Guard to use virtualization-based security to isolate secrets like NTLM password hashes and Kerberos tickets, making them harder for malware to steal.

Sources & References

New campaign impersonates LastPass to deliver Rapuncel info-stealer
Cybersecurity Help (cybersecurity-help.cz) September 21, 2026
Fake LastPass Authenticator GitHub repos push new Rapuncel infostealer
BleepingComputer (bleepingcomputer.com) September 18, 2026
Rapuncel Infostealer Targets 40+ Brands via GitHub
Xcademia (xcademia.com) September 20, 2026

Article Author

Jason Gomes

Jason Gomes

• Cybersecurity Practitioner

Cybersecurity professional with over 10 years of specialized experience in security operations, threat intelligence, incident response, and security automation. Expertise spans SOAR/XSOAR orchestration, threat intelligence platforms, SIEM/UEBA analytics, and building cyber fusion centers. Background includes technical enablement, solution architecture for enterprise and government clients, and implementing security automation workflows across IR, TIP, and SOC use cases.

Threat Intelligence & AnalysisSecurity Orchestration (SOAR/XSOAR)Incident Response & Digital ForensicsSecurity Operations Center (SOC)SIEM & Security AnalyticsCyber Fusion & Threat SharingSecurity Automation & IntegrationManaged Detection & Response (MDR)

Editorial Standards & Analyst Review

CyberNetSec.io uses automation to assist source monitoring, deduplication, observable extraction, and structured intelligence generation. Published analysis follows human-defined editorial standards and adds defensive context including MITRE ATT&CK, D3FEND, STIX, and Sigma where applicable. Read our editorial policy.

Tags

RapuncelInfostealerMalwareGitHubLastPassEDR EvasionKernel DriverSEO Poisoning

📢 Share This Article

Help others stay informed about cybersecurity threats

🎯 MITRE ATT&CK Mapped

Every tactic, technique, and sub-technique used in this threat has been identified and mapped to the MITRE ATT&CK framework for consistent, actionable threat language.

🧠 Enriched & Analyzed

Observables and indicators of compromise (IOCs) have been extracted and cataloged. Risk has been assessed and correlated with known threat actors and historical campaigns.

🛡️ Actionable Guidance

Detection rules, incident response steps, and D3FEND-aligned mitigation strategies are included so your team can act on this intelligence immediately.

🔗 STIX Visualizer

Structured threat data is packaged as a STIX 2.1 bundle and can be visualized as an interactive graph — relationships between actors, malware, techniques, and indicators.

Sigma Generator

Sigma detection rules are derived from the threat techniques in this article and can be converted for deployment across any major SIEM or EDR platform.