Files
sibouzitoun aea2eb6cfb Release v1.1.0: Process Injection & Architecture Hardening
- Implement complete cross-process injection engine via snd_inj_ctx_t
- Track explicit remote_entry_point for safe thread hijacking and PE execution
- Refactor standalone syscall resolvers into a unified pipeline (scan/sort)
- Perfect status code system by purging generic fallbacks in favor of highly-specific, domain-aware error codes
- Fix minor pointer validation and parsing bugs in the reflective loader
2026-06-28 14:14:54 +01:00

1.2 KiB

Process Primitives

Remote process interaction: open target, allocate/write/protect remote memory, create a remote thread. Operations route through an injected snd_process_api_t table.

Primary consumer: injection domain (snd_inj_ctx_t.proc_api).

Caution

OpSec: snd_proc_win routes cross-process operations through monitored Win32 APIs. Prefer snd_proc_sys or snd_proc_nt for evasive deployments.

Header map

Header Role
sindri/primitives/process.h snd_proc_win, snd_proc_nt, snd_proc_sys
sindri/primitives/os_api.h snd_process_api_t callback typedefs

Source map

Source Backend
src/primitives/process/win.c snd_proc_win
src/primitives/process/nt.c snd_proc_nt
src/primitives/process/sys.c snd_proc_sys

Table of Contents