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
22 lines
479 B
CMake
22 lines
479 B
CMake
cmake_minimum_required( VERSION 3.27 )
|
|
project( Stardust )
|
|
|
|
set( CMAKE_CXX_STANDARD 11 )
|
|
set( CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++ )
|
|
set( CMAKE_CXX_FLAGS ${COMPILE_FLAGS} )
|
|
|
|
set( CMAKE_C_STANDARD 11 )
|
|
set( CMAKE_C_COMPILER x86_64-w64-mingw32-gcc )
|
|
set( CMAKE_C_FLAGS ${COMPILE_FLAGS} )
|
|
|
|
include_directories( include )
|
|
|
|
set( STARDUST-SRC
|
|
src/PreMain.c
|
|
src/Main.c
|
|
src/Ldr.c
|
|
src/Utils.c
|
|
)
|
|
|
|
add_executable( Stardust ${STARDUST-SRC} )
|