Files
youssefnoob003-SindriKit/docs/examples
sibouzitoun b7d3cf717c Release v1.2.0: Indirect Syscalls & Pipeline Decoupling
- Implemented fully decoupled direct and indirect syscall invocation
- Added dynamic PEB-based gadget scanning (syscall; ret / sysenter)
- Added x86 & x64 inline MASM stubs with proper stack frame alignment
- Introduced SND_USE_DEFAULTS compile-time OpSec macro for lean payload compilation
- Extensive documentation across all primitives and examples
2026-06-29 19:31:15 +01:00
..

Examples & Proof of Concepts

Standalone executables under pocs/ demonstrate SindriKit domains end-to-end. Each PoC is a thin CLI wrapper around library chain functions — the same APIs documented in the domain references.

PoCs build when SND_CRTLESS=OFF (default). CRT-less mode replaces the full PoC set with loader_noCRT_nowinapi only.

Each PoC walkthrough follows: Location → What it demonstrates → (Command-line) → Walkthrough → Building → OpSec → See also.

OpSec profiles

PoC Loader / injection Memory Modules Process Syscall bootstrap
loader_winapi Local reflective snd_mem_win snd_mod_win Optional
loader_nowinapi Local reflective snd_mem_nt snd_mod_nt Required (disk ntdll)
loader_noCRT_nowinapi Local reflective snd_mem_win snd_mod_nt Required (PEB ntdll)
inject_shell Classic shellcode snd_proc_win Yes (KnownDlls; unused while _win)
inject_pe Classic PE snd_mem_sys snd_mod_nt snd_proc_sys Required (KnownDlls)
heavens_gate WoW64 → x64 exec Win32 alloc (demo) N/A

Table of Contents

Loaders (local reflective PE)

Injection (remote classic)

Execution primitives

Building all PoCs

cmake -B build -DSND_BUILD_PAYLOADS=ON
cmake --build build --config Release

Binaries land under build/pocs/<name>/Release/ (MSVC multi-config) or build/pocs/<name>/ (single-config generators).

CRT-less PoC only:

cmake -B build -DSND_CRTLESS=ON -DSND_ENABLE_DEBUG=OFF
cmake --build build --config Release