Icloader

Category: pua · Aliases: None known · Sample count (EMBER 2018): 1,145 · Enrichment: expert-seo · Updated: 2026-06-09

Overview

TrojanDownloader:Win32/ICLoader is a highly evasive, specialized payload dropper heavily utilized by initial access brokers to secure a foothold and deploy advanced threats like ransomware or banking trojans.

What is ICLoader?
For general users, ICLoader provides zero visual indicators of infection. For SOC analysts, an ICLoader detection is a critical alert. It is a 'first-stage' threat designed purely to bypass initial security controls, profile the endpoint's defenses, and securely retrieve the final, destructive payload from a remote Command-and-Control (C2) server.

Infection Vectors & Threat Hunting
ICLoader is frequently distributed via weaponized macros in phishing emails or dropped by exploit kits (such as RIG). Upon execution, the loader performs extensive anti-analysis checks, querying the registry and running processes to detect virtual machines, sandboxes, or specific EDR agents. If the environment appears clean, ICLoader connects to its C2 (often utilizing compromised WordPress sites or cloud hosting providers) to download an encrypted binary blob. It decrypts this payload in memory and executes it using Process Hollowing, ensuring the final malware never touches the disk.

Forensic Analysis & Impact
The impact of ICLoader depends entirely on the secondary payload, which is often high-severity ransomware. Incident responders should hunt for EDR alerts related to 'Suspicious Process Injection' or 'Anomalous Child Process Spawning'. Memory forensics is absolutely vital; analysts must capture a RAM image to extract the decrypted secondary payload from the hollowed process. Network analysis will reveal encrypted HTTPS traffic to obscure domains immediately following the initial execution.

MITRE ATT&CK Techniques

Observed techniques used by this family, mapped to the MITRE ATT&CK framework:

TechniqueNameTactic
T1105Ingress Tool TransferCommand and Control
T1055.012Process Injection: Process HollowingDefense Evasion
T1497.001Virtualization/Sandbox Evasion: System ChecksDefense Evasion
T1566.001Phishing: Spearphishing AttachmentInitial Access
T1027Obfuscated Files or InformationDefense Evasion

Generated Detections (Boilerplate)

These YARA and Sigma rules are auto-generated based on the family name and aliases. They must be heavily tuned before deployment in a production environment.

YARA Rule

rule MALWARE_WIN_ICLOADER {
    meta:
        description = "Detects Icloader (pua)"
        author = "SystemHelpdesk Boilerplate Generator"
        date = "2026-07-06"
    strings:
        $s1 = "icloader" ascii wide nocase
    condition:
        uint16(0) == 0x5a4d and any of them
}

Sigma Rule

title: Suspicious Icloader Activity
id: fb870f9a71b06e95cd400f5462f8bed5
status: experimental
description: Detects generic indicators of the icloader malware family.
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
        CommandLine|contains:
            - "*icloader*"
    condition: selection
level: medium

Containment & Response Steps

Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.

  1. Instantly isolate the endpoint to prevent ICLoader from successfully downloading and executing the secondary ransomware payload.
  2. Capture a live memory image (RAM dump) before powering down the machine to preserve the memory-resident secondary payload for analysis.
  3. Analyze proxy and DNS logs to identify the C2 domains contacted by ICLoader, and block them proactively across the perimeter.
  4. Perform a deep forensic scan to determine if the secondary payload was successfully executed before isolation.

What to Avoid

Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.

  1. Do not assume the threat is mitigated simply by deleting the initial phishing email; the memory-resident loader may already be active.
  2. Avoid rebooting the machine during triage, as the secondary payload exists only in memory and will be lost, hindering the investigation.

References & External Analysis

Related Families (Category: pua)

Explore other malware families in the same category:

Need help with an active incident? Published by the SystemHelpdesk team.

Machine-readable

Get this profile as JSON: https://jordanricky1604-ship-it.github.io/malware-families-catalog/api/icloader.json

Ecosystem & Interactive Environments

This profile is part of the Malware Families Catalog, a public dataset of 2,899 malware families. The catalog is also published across our ecosystem: Hugging Face, Kaggle, Replit, StackBlitz, CodeSandbox, and CodePen.