Adds l3ak ctf 2025

This commit is contained in:
2025-07-14 09:27:19 +02:00
parent 863fdff225
commit 7df580044e
8 changed files with 403 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int main(void)
{
srand(time(NULL) + 1);
printf("%d", (rand() % 0x5b + 10));
return 0;
}