From b6e49e6287195af40e677028e28253a56919644d Mon Sep 17 00:00:00 2001 From: liona24 Date: Fri, 25 Aug 2023 20:45:31 +0200 Subject: [PATCH] Update Makefile target --- .../CVE-2023-31436_mitigation/exploit/mitigation-6.1/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pocs/linux/kernelctf/CVE-2023-31436_mitigation/exploit/mitigation-6.1/Makefile b/pocs/linux/kernelctf/CVE-2023-31436_mitigation/exploit/mitigation-6.1/Makefile index d8f37c45..d45a7b07 100644 --- a/pocs/linux/kernelctf/CVE-2023-31436_mitigation/exploit/mitigation-6.1/Makefile +++ b/pocs/linux/kernelctf/CVE-2023-31436_mitigation/exploit/mitigation-6.1/Makefile @@ -1,6 +1,9 @@ all: exploit.c bin $(CC) exploit.c -o bin/exploit -O3 -static +exploit: exploit.c + $(CC) exploit.c -o exploit -O3 -static + bin: mkdir -p bin/