Solution to Hack The Box Challenge - fs0ciety
We believe that there is an SSH Password inside password protected 'ZIP' folder. Can you crack the 'ZIP' folder and get the SSH password?
Using fcrackzip you can bruteforce a zip file giving a dictionary.
fcrackzip -u -v -D -p dictionary.txt password.zip I used the ohmama wordlist
After that you will get the password to open the .txt file. Inside of it there is a phrase cyphered.
With this tool you can detect what cypher was used. That detects that is base64, with the same tool you can decrypt it...
You will get some binary code, use any binary to text translate and you have the flag...