write-ups-challenges-2023-2024/unbreakable-1/SOLUTION.md
2023-11-28 16:24:59 +01:00

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}