在 Tryhackme 上执行 ssh 连接时出现身份验证错误
Authentication error while performing a ssh connection on Tryhackme
我一直在寻找这个问题很长时间,但我似乎得不到肯定的结果,我是渗透测试的新手,所以我正在 tryhackme 上做一些任务来学习 Linux 的基础知识所以当我尝试连接到 ssh 服务器时:
ssh shiba1@10.8.150.23
The authenticity of host '10.8.150.23 (10.8.150.23)' can't be established.
ECDSA key fingerprint is
SHA256:5mSp6dwM2HeSewbWzIVJ2GV4bRUmbrdS0ZX8qMRPjfU.
Are you sure you want to continue connecting (yes/no /[fingerprint])? yes
Failed to add the host to the list of known hosts (/home/chota/.ssh/known_hosts).
shiba1@10.8.150.23's password:
Permission denied, please try again.
shiba1@10.8.150.23's password:
它给我一个身份验证错误(即使我输入的密码是 shiba1)顺便说一句,这个问题不是 ssh connection refused : tryhackme Learn Linux walkthrough 的重复
任何帮助,将不胜感激
顺便说一句,您可以在以下 link 找到房间:
https://tryhackme.com/room/zthlinux
it gives me an authentication error
在此之前,它给你一个 /home/chota/.ssh/known_hosts
的问题。
我将从检查 /home/chota/.ssh
和 known_hosts
的权限开始,看看为什么 ssh 进程无法修改该文件。
然后我可以检查身份验证错误是否仍然存在。
我一直在寻找这个问题很长时间,但我似乎得不到肯定的结果,我是渗透测试的新手,所以我正在 tryhackme 上做一些任务来学习 Linux 的基础知识所以当我尝试连接到 ssh 服务器时:
ssh shiba1@10.8.150.23
The authenticity of host '10.8.150.23 (10.8.150.23)' can't be established.
ECDSA key fingerprint is
SHA256:5mSp6dwM2HeSewbWzIVJ2GV4bRUmbrdS0ZX8qMRPjfU.
Are you sure you want to continue connecting (yes/no /[fingerprint])? yes
Failed to add the host to the list of known hosts (/home/chota/.ssh/known_hosts).
shiba1@10.8.150.23's password:
Permission denied, please try again.
shiba1@10.8.150.23's password:
它给我一个身份验证错误(即使我输入的密码是 shiba1)顺便说一句,这个问题不是 ssh connection refused : tryhackme Learn Linux walkthrough 的重复
任何帮助,将不胜感激
顺便说一句,您可以在以下 link 找到房间:
https://tryhackme.com/room/zthlinux
it gives me an authentication error
在此之前,它给你一个 /home/chota/.ssh/known_hosts
的问题。
我将从检查 /home/chota/.ssh
和 known_hosts
的权限开始,看看为什么 ssh 进程无法修改该文件。
然后我可以检查身份验证错误是否仍然存在。