After logging in to a remote shell we find a folder files/ containing flags and fake flags and a script ./decrypt.sh as well to check and decrypt those files.
If we run the script on one of those files we get an output telling us whether that file contains …
We are provided a game script that automatically gets executed when connecting to the remote shell:
#!/usr/bin/bash# Generate a random number between 1 and 1000target=$(((RANDOM%1000)+1))echo"Welcome to the Binary Search Game!"echo"I'm thinking of a number between 1 and 1000."# Trap …
Given 10 different squares made up of 1000x1000 random numbers you need to input the optimal path from the upper left to the lower right corner consisting only of steps d - down or r - right. The sum of all the visited numbers must be maximal.