First CTFs

This commit is contained in:
2026-05-09 20:58:42 +02:00
commit 5635246581
21 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
CC = gcc
CFLAGS = -fno-stack-protector -no-pie -O0 -g
all: escape_room
escape_room: main.c
$(CC) $(CFLAGS) -o $@ $<
clean:
rm -f escape_room