First we connect to the server using ssh
Inside the inhere directory there are many folders. We use find
command to get the required file according to the given parameters
ssh [email protected] -p 2220
find . -readable -size 1033c ! -executable
find is used to find single or multiple files satisfying some given conditions.
.
tells find to begin the search from the current directory
-readable
tells find that the file should be readable by the current user.
-size 1033c
tells find that the file size should be 1033 bytes.
! -executable
tells find that the file is not an executable.
On running the command we get output as
./maybehere07/.file2
So our next step is...
Flag - P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU