我是靠谱客的博主 震动摩托,最近开发中收集的这篇文章主要介绍SSH服务器支持的算法漏洞,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

查看linux服务器上支持的(所有的)ssh对称秘钥:
ssh -Q cipher
查看支持身份验证加密(启用的)的对称秘钥:
ssh -Q cipher-auth
查看支持的消息完整性秘钥:
ssh -Q mac

#输入ssh -oCiphers=aes128-ctr 服务器IP地址,可以指定秘钥算法进行ssh连接:
#ssh -oCiphers=aes128-ctr 120.78.222.135

解决办法:
vim /etc/ssh/ssh_config
vim /etc/ssh/sshd_config
#ssh_config和sshd_config都是ssh服务器的配置文件,二者区别在于,前者是针对客户端的配置文件,后者则是针对服务端的配置文件。

#结尾添加下面的内容,用来指定加密协议:
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,,aes192-cbc,aes256-cbc,aes128-gcm@openssh.com,rijndael-cbc@lysator.liu.se,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,arcfour

Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc,aes128-gcm@openssh.com,rijndael-cbc@lysator.liu.se,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,hmac-sha1,hmac-sha1-96,hmac-sha2-256,hmac-sha2-512,hmac-md5,hmac-md5-96,umac-64@openssh.com,umac-128@openssh.com,hmac-sha1-etm@openssh.com,hmac-sha1-96-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-md5-etm@openssh.com,hmac-md5-96-etm@openssh.com,umac-64-etm@openssh.com,umac-128-etm@openssh.com

最后

以上就是震动摩托为你收集整理的SSH服务器支持的算法漏洞的全部内容,希望文章能够帮你解决SSH服务器支持的算法漏洞所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(69)

评论列表共有 0 条评论

立即
投稿
返回
顶部