欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

在Linux系统上用nmap扫描SSL漏洞的方法

程序员文章站 2022-09-08 10:50:49
这篇文章主要介绍了在Linux系统上用nmap扫描SSL漏洞的方法,2014年爆出的SSL安全漏洞是震动整个世界的大新闻,安全措施非常必要,需要的朋友可以参考下... 15-06-28...

以下载nmap 6.45及以上版本。如果懒的重新安装,可以直接下载ssl-heartbleed.nse 脚本。

使用nmap 6.45扫描服务器心脏出血漏洞(heartbleed)的具体方法(步骤)如下:

当然,你要先按好nmap,自己可以去网上google下。

在使用nmap 的过程中指定 ssl-heartbleed.nse 脚本来扫描探测,命令如下;
[root@dabu.info ~]#nmap -sv -p 443 --script=ssl-heartbleed.nse  192.168.1.5
或者
[root@dabu.info ~]#nmap -sv -p 443 --script=ssl-heartbleed  192.168.1.5
解释;其中 192.168.1.5 是要被扫描的ip,也可以换成域名

假设你的服务器(vps)有心脏出血漏洞(heartbleed)漏洞,则会有出现下面的提示:


复制代码
代码如下:
nmap scan report for mediacentre (192.168.1.5)
host is up (0.0059s latency).
not shown: 992 closed ports
port state service version
443/tcp open ssl openssl (sslv3)
| ssl-heartbleed:
| vulnerable:
| the heartbleed bug is a serious vulnerability in the popular openssl cryptographic software library. it allows for stealing information intended to be protected by ssl/tls encryption.
| state: vulnerable
| risk factor: high
| description:
| openssl versions 1.0.1 and 1.0.2-beta releases (including 1.0.1f and 1.0.2-beta1) of openssl are affected by the heartbleed bug. the bug allows for reading memory of systems protected by the vulnerable openssl versions and could allow for disclosure of otherwise encrypted confidential information as well as the encryption keys themselves.
|
| references:
| https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2014-0160
| http://www.openssl.org/news/secadv_20140407.txt
|_ http://cvedetails.com/cve/2014-0160/
service info: host: firefly003; os: linux; cpe: cpe:/o:linux:linux_kernel

注意:

复制代码
代码如下:

| state: vulnerable /*受威胁 */
| risk factor: high /* 风险高*/

这两行表示扫描的结果。


升级完成后,我们再次测试,就没有刚才的提示了。而是变成:

   

复制代码
代码如下:
nmap scan report for mediacentre (192.168.1.5)
host is up (0.0011s latency).
port state service version
443/tcp open ssl openssl (sslv3)</p> <p> service detection performed. please report any incorrect results at http://nmap.org/submit/ .
nmap done: 1 ip address (1 host up) scanned in 11.24 seconds