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.0 KiB

Memory Primitives

Local virtual memory management: allocation, protection changes, and deallocation in the current process. All operations route through an injected snd_memory_api_t table.

Caution

OpSec: snd_mem_win routes through userland hooks in kernel32 / ntdll. Prefer snd_mem_nt or snd_mem_sys for evasive deployments.

Header map

Header Role
sindri/primitives/memory.h Pre-built instances: snd_mem_win, snd_mem_nt, snd_mem_sys
sindri/primitives/os_api.h snd_memory_api_t callback typedefs

Source map

Source Backend
src/primitives/memory/win.c snd_mem_win
src/primitives/memory/nt.c snd_mem_nt
src/primitives/memory/sys.c snd_mem_sys

Table of Contents