如何熟悉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编译安装openSSL?

1 基础知识 OpenSSL是一个开放源代码的软件库包,应用程序可以使用这个包来进行安全通信,避免窃 …

Debian-Like
如何配置Ubuntu国内APT安装源?

1 前言 一个问题,一篇文章,一出故事。 本章将解决Ubuntu系统从国内源安装或者更新的问题。 2 …

Debian-Like
如何修改Ubuntu SSSD加域用户的头像?

1 前言 一个问题,一篇文章,一出故事。 笔者的工作电脑是一部使用SSSD加域的电脑,加域的大致过程 …