4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Makefile
CC = gcc

all: clean exploit

.PHONY: exploit
exploit:
	$(CC) exploit.c util.c -o exploit -no-pie -static

clean:
	rm -f exploit