Files
Bobby Cooke 1d61c810bb IAT Hooking functionality added, Fixed bugs
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_
2023-03-03 06:17:42 -07:00

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