mirror of
https://github.com/v12-security/pocs.git
synced 2026-05-16 11:07:43 +00:00
fragnesia for 5db89c99566f
This commit is contained in:
parent
5a1bbe08b5
commit
8852a0f1c1
4 changed files with 1494 additions and 0 deletions
14
fragnesia-5db89c99566fc/Makefile
Normal file
14
fragnesia-5db89c99566fc/Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
CC ?= gcc
|
||||
CFLAGS := -O2 -Wall -Wextra -std=gnu11
|
||||
LDFLAGS := -static
|
||||
BIN := skb_segment_exploit
|
||||
|
||||
all: $(BIN)
|
||||
|
||||
$(BIN): skb_segment_exploit.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
||||
|
||||
clean:
|
||||
rm -f $(BIN)
|
||||
|
||||
.PHONY: all clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue