• kali中部署ssh
#安装ssh
apt-get install ssh

#修改配置文件
vi /etc/ssh/sshd_config

#34行修改为以下内容
#PermitRootLogin prohibit-password
PermitRootLogin yes

#使用SecureCRT 7.0.0连接kali,由于秘钥交换算法不兼容需要添加以下内容
#最后一行插入以下内容
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1

#保存退出后重启ssh
systemctl restart ssh
netstat -luntp