Clear it in 3 steps
-
No environment needed
This challenge can be solved with the information in the statement alone. Submit the flag you find directly.
-
Investigate the target
-
Submit the flag
Pseudo-random output with a fixed seed is reproducible and must not be used for cryptographic secrets. Flag generation code: import random random.seed(12345) flag_chars = [chr(random.randint(65, 90)) for i in range(10)] print("KINOCO{" + "".join(flag_chars) + "}") Run the same Python code and submit the flag it prints.
This challenge can be solved with the information in the statement alone. Submit the flag you find directly.
The same seed produces the same sequence
Run the snippet with Python 3
Use modules such as secrets for cryptographic randomness