1
0
Fork 0

Use kernel exploit name as base for test util name

timestamps
dump_stack() 2018-10-07 16:56:11 +00:00
parent fe5fe7367d
commit e223734d24
1 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# out-of-tree called make with four arguments:
# - KERNEL: kernel headers path
# - TARGET_EXPLOIT: name of exploit binary that MUST be produced by makefile.
# - TARGET_TEST: name of test binary that MUST be produced by makefile
# - $(TARGET_EXPLOIT)_test: name of test binary that MUST be produced by makefile
# and it's will be runned on a LPE stage. TARGET_TEST MUST accept two argument:
# - Path to exploit binary
# - File that MUST be created with exploit. It uses for test that exploit works
@ -15,11 +15,10 @@
# VMLINUZ=/boot/vmlinuz-4.8.0-58-generic
TARGET_EXPLOIT := CVE-2016-5195
TARGET_TEST := CVE-2016-5195_test
all:
gcc CVE-2016-5195.c -o $(TARGET_EXPLOIT)
gcc CVE-2016-5195_test.c -o $(TARGET_TEST)
gcc CVE-2016-5195_test.c -o $(TARGET_EXPLOIT)_test
clean:
rm -f $(TARGET_EXPLOIT)