Skip to main content

Supported Architectures

SysWhispers4 supports 4 different processor architectures with varying feature sets across Windows platforms:

x64

64-bit x86-64. Full feature support. Default target.

x86

32-bit x86. Embedded + Egg Hunt only.

WoW64

32-bit process on 64-bit Windows. Heaven’s Gate transition.

ARM64

Windows on ARM (Snapdragon). Embedded method only.

Architecture Comparison

x64 is the recommended and most feature-complete platform. All advanced techniques (randomized indirect, RecycledGate, hardware breakpoints, etc.) are x64-only.

x64: Full Feature Set

The primary target platform with complete support for all SysWhispers4 capabilities.

Syscall Mechanics

Key characteristics:
  • Uses AMD64/Intel64 syscall instruction (0F 05)
  • SSN in eax register
  • Arguments in rcx, rdx, r8, r9 (fastcall) → kernel expects r10, rdx, r8, r9
  • Return value in rax (NTSTATUS)

Invocation Method Support

Resolution Method Support

Usage

x86: 32-bit Legacy

32-bit x86 Windows support with limited feature set.

Syscall Mechanics

Key characteristics:
  • Varies by Windows version (int 2Eh → sysenter → hybrid)
  • SSN in eax
  • Arguments on stack (stdcall)
  • Less reliable than x64 due to Windows version variance

Limited Support

x86 support is limited to basic invocation methods. Advanced techniques (indirect, randomized, advanced resolution) are x64-only.

Usage

WoW64: 32-bit on 64-bit Windows

32-bit process running on 64-bit Windows kernel. Uses Heaven’s Gate to switch to 64-bit mode and execute native 64-bit syscalls.

How Heaven’s Gate Works

Benefits:
  • Bypasses WoW64 translation layer (wow64.dll, wow64cpu.dll)
  • Direct 64-bit syscalls from 32-bit process
  • Full x64 feature set available
WoW64 mode gives you all x64 capabilities (indirect, randomized, RecycledGate, etc.) from a 32-bit PE. Useful for legacy compatibility with modern evasion.

Usage

ARM64: Windows on ARM

Windows 11 on ARM64 processors (Snapdragon, M1 via emulation, etc.).

Syscall Mechanics

Key characteristics:
  • Uses ARM64 svc #0 instruction (Supervisor Call)
  • SSN in w8 register (32-bit subset of x8)
  • Arguments in x0–x7 (ARM64 calling convention)
  • Limited toolchain support (MSVC ARM64 only)

Limited Support

ARM64 support is experimental and limited to static embedded syscalls only. No dynamic resolution or advanced invocation methods.

Usage

Compiler Support

SysWhispers4 supports 3 compiler toolchains with different assembly syntax requirements:

MSVC

Microsoft Visual Studio. MASM syntax. Default.

MinGW

GCC for Windows. GAS inline assembly.

Clang

LLVM Clang. GAS inline assembly.

MSVC (Microsoft Visual Studio)

Assembly format: MASM (Microsoft Macro Assembler) Generated files:
  • SW4Syscalls.asm — standalone ASM file
Build setup:
  1. Add all files to Visual Studio project
  2. Project → Build Customizations → masm (.targets)
  3. Build normally
Usage:

MinGW / GCC

Assembly format: GAS (GNU Assembler) inline assembly in C Generated files:
  • SW4Syscalls_stubs.c — GAS __asm__ blocks
Build:
Usage:

Clang

Assembly format: GAS inline assembly (same as MinGW) Build:
Usage:

Cross-Compilation Matrix

For maximum compatibility, use MSVC on x64. This combination supports all features and is the most tested.

Choosing the Right Architecture

When to Use x64

  • Modern Windows systems (Windows 10/11, Server 2016+)
  • Maximum feature set required (indirect, randomized, RecycledGate)
  • Production red team tools
  • Default choice for most use cases

When to Use x86

  • Legacy Windows systems (XP, Vista, 7)
  • 32-bit-only environments
  • Simple embedded syscalls sufficient

When to Use WoW64

  • 32-bit PE required for compatibility (legacy apps, DLL injection)
  • x64 evasion features needed from 32-bit context
  • Hybrid environments (32-bit payload on 64-bit system)

When to Use ARM64

  • Windows on ARM devices (Surface Pro X, etc.)
  • Testing/research only (limited production use)
  • Static syscalls sufficient (no advanced features needed)

Platform Limitations Summary

Learn More

Invocation Methods

Detailed comparison of embedded, indirect, randomized, and egg hunt techniques.

SSN Resolution Methods

Overview of all 8 syscall number resolution strategies.

Command Reference

Complete CLI documentation including --arch and --compiler flags.

Integration Guides

Step-by-step integration for MSVC, MinGW, and Clang toolchains.