4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Makefile
EXP := exploit
HDRS := $(sort $(wildcard include/*.h))

CFLAGS += -I include -static -w

all: $(EXP)

%: %.c $(HDRS)
	$(CC) $(CFLAGS) -o $@ $<

clean:
	rm -f $(EXP)