使用SSH登录kali

1

201904版本的kali默认是拒绝root用户直接登录的,需要我们修改两个配置项才能登录

首先查看SSH服务状态

1
$ /etc/init.d/ssh status

修改配置文件

1
$ vim /etc/ssh/sshd_config

增加下面第二行

1
2
#PermitRootLogin prohib-passwd
PermitRootLogin yes

取消注释下面第二行

1
2
#PasswordAuthentication yes
PasswordAuthentication yes

重启SSH服务

1
$ /etc/init.d/ssh restart

OK