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
10 lines
146 B
C
10 lines
146 B
C
#ifndef STARDUST_UTILS_H
|
|
#define STARDUST_UTILS_H
|
|
|
|
ULONG HashString(
|
|
_In_ PVOID String,
|
|
_In_ SIZE_T Length
|
|
);
|
|
|
|
#endif //STARDUST_UTILS_H
|