12 lines
290 B
Makefile
12 lines
290 B
Makefile
all: key_exploit
|
|
|
|
key_exploit: key_exploit.c
|
|
clang -o key_exploit key_exploit.c -framework CoreFoundation -framework IOKit -g -D_FORTIFY_SOURCE=0
|
|
|
|
install: key_exploit
|
|
install -m 755 key_exploit ../../../../data/exploits/CVE-2014-4404
|
|
|
|
clean:
|
|
rm -rf key_exploit
|
|
rm -rf key_exploit.dSYM
|