4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Makefile
.PHONY: clean image
all: hello goodbye image

hello: hello.c
	gcc -o $@ $<

goodbye: goodbye.c
	gcc -o $@ $<

image:
	sudo docker build --tag=justinsteven/sudo_digest_race .

clean:
	rm -f hello goodbye
	sudo docker rmi justinsteven/sudo_digest_race