Skip to content
Vol. 1 · Ed. 2026
CyberGlossary
Entry № 696

Loader

Reviewed byCybersecurity entrepreneur & security researcher

What is Loader?

LoaderMalware that prepares the environment and loads further payloads — often directly into memory — for a subsequent stage of an attack.


A loader is a specialized first-stage component whose primary job is to fetch, decode, and execute additional malware in memory, typically through reflective DLL injection, process hollowing, or shellcode. It often profiles the host, disables defences, and establishes persistence before passing control to the next stage. Loaders are central to the modern malware-as-a-service economy, where access brokers sell installs to ransomware affiliates and info-stealer operators — the loader is the toll booth between initial access and monetization.

Real loaders and their takedowns

QakBot (Qbot) was the archetype: a banking-trojan-turned-loader that seeded ransomware for Conti, REvil, ProLock, Egregor, and Black Basta. In August 2023 the FBI-led Operation Duck Hunt seized 52 servers, redirected the botnet through Bureau-controlled infrastructure, pushed an uninstaller to over 700,000 infected hosts, and tied the operation to roughly $58M in ransom fees. Europol's Operation Endgame (May 2024) then dismantled a wave of successor loaders — IcedID, SmokeLoader, Pikabot, SystemBC, and Bumblebee — the largest-ever action against the loader ecosystem. These campaigns confirm the pattern: disrupt the loader layer and you starve downstream ransomware.

Because loaders increasingly run fileless — decrypting payloads only in memory and abusing signed LOLBins (rundll32, regsvr32, mshta) — signature scanning alone misses them. Effective defences layer EDR/XDR with behavioural detection of injection (CreateRemoteThread, hollowed processes), AMSI-instrumented script inspection, PowerShell Constrained Language Mode, application allow-listing, macro and LNK/ISO delivery controls, and threat intelligence on active loader families.

flowchart LR
  A[Initial access: phishing LNK / ISO / macro] --> B[Loader executes]
  B --> C[Profile host and disable defences]
  C --> D[Establish persistence]
  D --> E[Fetch encrypted payload from C2]
  E --> F[Decrypt and inject in memory]
  F --> G{Next stage}
  G --> H[Ransomware]
  G --> I[Info-stealer]
  G --> J[Cobalt Strike beacon]

Examples

  1. 01

    Bumblebee loader observed distributing Cobalt Strike and ransomware.

  2. 02

    Smoke Loader / Dofoil, a long-running pay-per-install loader family.

Frequently asked questions

What is Loader?

Malware that prepares the environment and loads further payloads — often directly into memory — for a subsequent stage of an attack. It belongs to the Malware category of cybersecurity.

What does Loader mean?

Malware that prepares the environment and loads further payloads — often directly into memory — for a subsequent stage of an attack.

How do you defend against Loader?

Defences for Loader typically combine technical controls and operational practices, as detailed in the full definition above.

What are other names for Loader?

Common alternative names include: Malware loader, Stage-1 loader.

Related terms

See also