Submission

Attention

The project is due on Tuesday, 12th May 2026, 11:59 PM.

This is a hard deadline. No late submission will be accepted after this date.

Important

Your code is going to be tested on the same VM as the one you used for the project, with all the tools mentionned in tutorial 3 and 4 installed. LSM will also be enabled for challenge 2. If you made any other modifications to the VM for your code to work, please mention it in the README.md file.

Your submission will be a tarball archive named group_{your_group_ID}.tar.gz. At the root of your archive will be a directory named group_{your_group_ID}. Inside this directory, you will have one directory per challenge, each named with the challenge’s name (as in the templates downloaded from the website). However, you will only include your source files at the root of those directories (not in src/).

You can also include a README.md file at the root of your archive if you want to provide additional information about your submission. You can also include a feedback.txt file at the root of your archive if you want to provide feedback about the project (e.g., what you liked/disliked, what was easy/hard, points of improvement, etc.).

This means that running the following command:

tar -xzvf group_{your_group_ID}.tar.gz

should output something like:

group_{your_group_ID}/
group_{your_group_ID}/README.md                 # README.md is optional
group_{your_group_ID}/feedback.txt              # feedback.txt is optional
group_{your_group_ID}/antidebug/
group_{your_group_ID}/antidebug/prog.bpf.c
group_{your_group_ID}/antidebug/prog.c
group_{your_group_ID}/antidebug/(prog.h)        # some challenges may require additional header files
group_{your_group_ID}/protected_file/
group_{your_group_ID}/protected_file/prog.bpf.c
group_{your_group_ID}/protected_file/prog.c
group_{your_group_ID}/ciphered/
group_{your_group_ID}/ciphered/prog.bpf.c
group_{your_group_ID}/ciphered/prog.c
group_{your_group_ID}/fork/
group_{your_group_ID}/fork/prog.bpf.c
group_{your_group_ID}/fork/prog.c
group_{your_group_ID}/page_faults/
group_{your_group_ID}/page_faults/prog.bpf.c
group_{your_group_ID}/page_faults/prog.c

Submissions will be made as a group_{your_group_ID}.tar.gz archive (for example group_3.tar.gz), on the submission system. Failure to compile a challenge will result in an awarded mark of 0 for this challenge. Different challenges can have different weights, depending on their difficulty.

Bon travail…

Note

You do not have to worry about race conditions for this project.