SOC Prime Bias: High

17 Sep 2026 08:32 UTC

The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions

Author Photo
SOC Prime Team linkedin icon Follow
The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions
shield icon

Detection stack

  • AIDR
  • Alert
  • ETL
  • Query

Summary

KREMLIN is a sophisticated malware ecosystem targeting Brazilian banking users through multi-stage JavaScript loaders and malicious browser extensions. The threat actors abuse Ethereum smart contracts as dead-drop resolvers to manage C2 infrastructure and bypass Chromium integrity protections. The malware can steal session tokens, cookies, and sensitive credentials from Chrome and Edge browsers.

Investigation

Elastic Security Labs tracked KREMLIN across seven campaigns spanning 15 months, analyzing its multi-stage infection chain and C++ installer. Researchers identified Ethereum-based dead-drop resolvers, side-loading through legitimate SentinelOne binaries, and manipulation of Chromium Secure Preferences files to install unauthorized extensions. The investigation also uncovered campaign-specific markers, including unique customer IDs and mutexes.

Mitigation

Organizations should monitor unauthorized changes to Chromium Secure Preferences files and suspicious browser debugging activity. Strict controls on scheduled tasks and monitoring for unusual Node.js execution can help reduce exposure. Network monitoring should also detect connections to known malicious domains and unexpected Ethereum smart contract queries originating from client endpoints.

Response

If KREMLIN activity is detected, affected endpoints should be isolated immediately to prevent session exfiltration and credential theft. Responders should examine browser profile directories for unauthorized extensions and remove malicious components. Scheduled tasks and running processes should also be audited for suspicious Node.js or SentinelOne-related activity, while potentially compromised credentials and active web sessions should be reset.

Attack Flow

We are still updating this part.

Detections

Download or Upload via Powershell (via cmdline)

SOC Prime Team
16 Sep 2026

Suspicious Powershell Strings (via powershell)

SOC Prime Team
16 Sep 2026

LOLBAS Conhost (via cmdline)

SOC Prime Team
16 Sep 2026

Call Suspicious .NET Methods from Powershell (via powershell)

SOC Prime Team
16 Sep 2026

Suspicious Files in Public User Profile (via file_event)

SOC Prime Team
16 Sep 2026

Possible Internet Archive Resolved By Uncommon Process (via dns_query)

SOC Prime Team
16 Sep 2026

Suspicious Scheduled Task (via audit)

SOC Prime Team
16 Sep 2026

Possible Cloudflare Development Domain Abuse (via dns)

SOC Prime Team
16 Sep 2026

IOCs (HashSha256) to detect: The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions

SOC Prime AI Rules
16 Sep 2026

IOCs (HashMd5) to detect: The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions

SOC Prime AI Rules
16 Sep 2026

IOCs (SourceIP) to detect: The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions Part 2

SOC Prime AI Rules
16 Sep 2026

IOCs (SourceIP) to detect: The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions Part 1

SOC Prime AI Rules
16 Sep 2026

IOCs (DestinationIP) to detect: The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions Part 2

SOC Prime AI Rules
16 Sep 2026

IOCs (DestinationIP) to detect: The extension you never installed: KREMLIN forges Chrome’s own integrity checks to steal banking sessions Part 1

SOC Prime AI Rules
16 Sep 2026

Detection of KREMLIN C2 Communication and Sandbox Evasion [Windows Network Connection]

SOC Prime AI Rules
16 Sep 2026

Suspicious System Information Queries for Sandbox Evasion [Windows Sysmon]

SOC Prime AI Rules
16 Sep 2026

Detect KREMLIN Malware Presence via PowerShell and Process Checks [Windows Process Creation]

SOC Prime AI Rules
16 Sep 2026

Simulation Execution

  • Attack Narrative & Commands: The adversary has gained initial access and is attempting to evade sandbox analysis. To do this, they deploy a secondary payload disguised as a system process (missioncritical.exe) and attempt to interact with virtualization processes (vmmemctl.exe) to detect if they are running in a VM. Finally, they utilize PowerShell to orchestrate the next stage of the infection. These specific process names are the triggers for the detection rule.

  • Regression Test Script:

      # Simulation script for KREMLIN Malware indicators
    
      # 1. Simulate PowerShell execution (Targeted by rule)
      Write-Host "[*] Triggering PowerShell detection..."
      powershell.exe -Command "Write-Host 'Simulating malicious activity'"
    
      # 2. Simulate the creation of 'missioncritical.exe' (Targeted by rule)
      # We create a dummy file and attempt to 'execute' it via start-process 
      # to generate a process creation event for the filename.
      Write-Host "[*] Triggering missioncritical.exe detection..."
      New-Item -Path "$env:TEMPmissioncritical.exe" -ItemType File -Force
      Start-Process "$env:TEMPmissioncritical.exe" -ErrorAction SilentlyContinue
    
      # 3. Simulate the creation of 'vmmemctl.exe' (Targeted by rule)
      Write-Host "[*] Triggering vmmemctl.exe detection..."
      New-Item -Path "$env:TEMPvmmemctl.exe" -ItemType File -Force
      Start-Process "$env:TEMPvmmemctl.exe" -ErrorAction SilentlyContinue
  • Cleanup Commands:

      # Cleanup simulation artifacts
      Remove-Item -Path "$env:TEMPmissioncritical.exe" -Force -ErrorAction SilentlyContinue
      Remove-Item -Path "$env:TEMPvmmemctl.exe" -Force -ErrorAction SilentlyContinue
      Write-Host "[+] Cleanup complete."