mirror of
https://github.com/boku7/BokuLoader/
synced 2026-06-06 15:24:27 +00:00
1d61c810bb
Added IAT hooking functionality to support future planned feature releases. Currently non-default Kernel32.Sleep hook poc added to sleep with ZwDelayExecution direct syscall (experimental). Fixed issues with stack frames and stack alignment that happened on some builds - Shoutout to @ilove2pwn_ @C5pider @kyleavery_
10 lines
241 B
Makefile
10 lines
241 B
Makefile
CC_x64 := x86_64-w64-mingw32-gcc
|
|
CFLAGS := $(CFLAGS) -O0
|
|
CFLAGS := $(CFLAGS) -masm=intel -Wall -Wno-pointer-arith -w
|
|
|
|
bokuloader: clean
|
|
$(CC_x64) $(CFLAGS) -c src/BokuLoader.c -o dist/BokuLoader.x64.o
|
|
clean:
|
|
rm -f dist/*.o
|
|
rm -f ./*.c
|