如何在 Centos 7 上手动更新 Nmap 的 Ncat

如何在 Centos 7 上手动更新 Nmap 的 Ncat

如何nmap-ncat在 Centos 7 上手动升级软件包?

答案1

检查版本:

$ nc --version
Ncat: Version 6.40 ( http://nmap.org/ncat )

删除 Yum 包并替换为 RPM 包。

$ sudo yum remove nmap-ncat
$ wget https://nmap.org/dist/ncat-7.60-1.x86_64.rpm
$ sudo rpm -i ncat-7.60-1.x86_64.rpm

符号链接nc

$ which ncat
/usr/bin/ncat
$ sudo ln -s /usr/bin/ncat /usr/bin/nc

安装后检查版本:

$ nc --version
Ncat: Version 7.60 ( https://nmap.org/ncat )

相关内容