452 B
452 B
Difficulty
25/100
Category
exploitation
How To Solve
You simply need to input the correct sequence of random numbers.
They are generated with the random C rand()
function. So you can
rewrite the program to give you random variables.
Here is an example generator:
#include <stdlib.h>
#include <stdio.h>
int main() {
for (int i = 0; i < 25; i++) {
printf("%i\n", rand() % 10);
}
}
Hints
n/a
Flag
IGCTF{n0t_S0_r4nd0m}