mirror of
https://github.com/Mr-xn/Penetration_Testing_POC.git
synced 2025-06-21 10:21:35 +00:00
13 lines
277 B
Makefile
13 lines
277 B
Makefile
![]() |
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# Created by Ilias Morad.
|
||
|
# Copyright © 2019 Ilias Morad. All rights reserved.
|
||
|
#
|
||
|
|
||
|
main: exploit.c gadgets.c kernel.s
|
||
|
nasm -f macho32 -o kernel.o kernel.s
|
||
|
gcc -o exploit -m32 -Wl,-pagezero_size,0 -masm=intel exploit.c gadgets.c kernel.o
|
||
|
|
||
|
clean:
|
||
|
rm exploit *.o
|