Bandit4
bandit level4
ssh server: bandit.labs.overthewire.org port 2220
username: bandit4
password: pIwrPrtPN36QITSp3EQaw936yaFoFgAB
after connecting to the server ls -al shows the existing of a directory named "inhere"
$ ls -al
shows a list of 10 files with name -file0X where X is number from 0 to 9
traying to cat any file of them shows garbage, the only solution is to implement the hint in the challenge saying that the password is in the only humane readable file
using the file command shows the file type of each of them there is only one file which is an ASCII text file "-file07"
then we only need to read this file
$ cat ./-file07
tell we meet there
Your comments and feedback are highly appreciated
Thank You