level13->level14
The password for the next level is stored in /etc/bandit_pass/bandit14 and can only be read by user bandit14. For this level, you don’t get the next password, but you get a private SSH key that can be used to log into the next level. Note: localhost is a hostname that refers to the machine you are working on
ls -al
cat sshkey.private
을 해보았다.
그냥 ssh private키 모양이길래 다음과 같이 ssh -i 옵션으로 private 키를 넣어서 bandit14로 연결하였다.
ssh -i sshkey.private -p 2220 bandit14@bandit.labs.overthewire.org
성공…!