fragnesia for 5db89c99566f

This commit is contained in:
Aaron Esau 2026-05-15 12:56:20 -05:00
parent 5a1bbe08b5
commit 8852a0f1c1
4 changed files with 1494 additions and 0 deletions

View 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