Files
furtest.fr/content/writeups/2025/l3ak_ctf/pwn/the_goose/predict.c
2025-07-14 09:27:19 +02:00

11 lines
149 B
C

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