mirror of
https://github.com/MaorSabag/NaX
synced 2026-06-28 15:01:11 +00:00
c0fc8d878b
Position-independent C2 beacon for Adaptix Framework with: - PIC shellcode beacon (PEB walk, FNV1a hashing) - BeaconGate API proxy + WFSO PoC sleepmask (extensible) - BOF execution with module stomping - Malleable C2 profiles with runtime switching - WinHTTP transport (proxy-aware) - Token manipulation (steal, impersonate, create) - TCP tunneling (SOCKS, lportfwd, rportfwd) - SMB pivoting - Stardust UDRL loader with module stomping
16 lines
206 B
C
16 lines
206 B
C
#ifndef STARDUST_LDR_H
|
|
#define STARDUST_LDR_H
|
|
|
|
#include <Common.h>
|
|
|
|
PVOID LdrModulePeb(
|
|
_In_ ULONG Hash
|
|
);
|
|
|
|
PVOID LdrFunction(
|
|
_In_ PVOID Module,
|
|
_In_ ULONG Function
|
|
);
|
|
|
|
#endif //STARDUST_LDR_H
|