This commit is contained in:
Ward Wouts 2020-01-16 08:42:45 +01:00
commit 55dd6701c6
10 changed files with 485 additions and 0 deletions

9
code/Makefile Normal file
View file

@ -0,0 +1,9 @@
.PHONY: all
demo:
gcc -ggdb -fno-stack-protector -z execstack -z norelro -m32 -no-pie -mpreferred-stack-boundary=2 demo.c -o demo
diy:
gcc -ggdb -fno-stack-protector -z execstack -z norelro -m32 -no-pie -mpreferred-stack-boundary=2 diy.c -o diy
all: demo diy