如何熟悉Nikto Web服务器扫描工具?

Debian-Like

1 前言

一个问题,一篇文章,一出故事。
笔者最近需要加固网站的安全,因此需要一个得力的Web服务器安全扫描工具。

2 最佳实践

2.1 安装运行环境

apt install perl

需要安装Perl 5,另外你还需要手动安装如下依赖的软件包,过程中有一些依赖提示,你需要自行处理,

cpan Net::SSLeay
cpan Getopt::Long
cpan JSON::PP
cpan MIME::Base64
cpan MD5
cpan Time::Local
cpan Time::HiRes
cpan POSIX
cpan Socket
cpan IO::Socket

2.2 下载软件包

cd ~
wget -O nikto-2.5.0.tar.gz https://codeload.github.com/sullo/nikto/tar.gz/refs/tags/2.5.0

以上指示命令演示,如果不能下载请从如下地址下载,
https://github.com/sullo/nikto/releases

2.3 解压软件包

cd ~
tar -xf nikto-2.5.0.tar.gz

2.4 运行软件包

cd ~/nikto-2.5.0/program
./nikto.pl -h http://www.cmdschool.org

另外,也可按照如下方式运行,

cd ~/nikto-2.5.0/program
perl nikto.pl -h http://www.cmdschool.org

参阅文档
============

官方首页
—————
https://cirt.net/

github首页
—————
https://github.com/sullo/nikto

使用文档
—————
https://github.com/sullo/nikto/wiki

没有评论

发表回复

Debian-Like
如何安装Ubuntu Linphone?

1 基础知识 1.1 软件介绍 Linphone 是一款开源的 VoIP(Voice over In …

Debian-Like
如何安装配置Ubuntu iptables-persistent

1 前言 一个问题,一篇文章,一出故事。 笔者今天需要在Ubuntu使用iptables,于是整理当 …

Debian-Like
如何安装Ubuntu steam?

1 基础知识 Steam是Valve公司聘请BitTorrent(BT下载)发明者布拉姆·科恩(Br …