From 6d2d5d718327a38d6b72ee6dfa4a20e4853e946a Mon Sep 17 00:00:00 2001 From: jordi Date: Wed, 13 Dec 2017 09:11:08 +0100 Subject: [PATCH] nikto: add page --- pages/common/nikto.md | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/pages/common/nikto.md b/pages/common/nikto.md index 9197b86d9..3c393e444 100644 --- a/pages/common/nikto.md +++ b/pages/common/nikto.md @@ -1,27 +1,23 @@ # nikto -> Web server scanner which performs comprehensive tests against web servers for multiple items, including over 6700 potentially dangerous files/programs. +> Web server scanner which performs comprehensive tests against web servers for multiple items. + +- Perform a basic Nikto scan against a target host: + +`perl nikto.pl -h {{192.168.0.1}}` + +- Specify the port number when performing a basic scan: + +`perl nikto.pl -h {{192.168.0.1}} -p {{443}}` + +- Scan ports and protocols with full URL syntax: + +`perl nikto.pl -h {{https://192.168.0.1:443/}}` + +- Scan multiple ports in the same scanning session: + +`perl nikto.pl -h {{192.168.0.1}} -p {{80,88,443}}` - Update to to the latest plugins and databases: `perl nikto.pl -update` - -- Perform a basic Nikto scan against a target host: - -`perl nikto.pl -h 192.168.0.1` - -- Specify the port number when performing a basic scan: - -`perl nikto.pl -h 192.168.0.1 -p 443` - -- Scan ports and protocols with full URL syntax: - -`perl nikto.pl -h https://192.168.0.1:443/` - -- Scan multiple ports in the same scanning session: - -`perl nikto.pl -h 192.168.0.1 -p 80,88,443` - -- Set the proxy on the command line: - -`perl nikto.pl -h localhost -useproxy http://localhost:8080/`