2

I ran the nikto security scan tool against one of our dev sites.

perl nikto.pl -h mydevsitename

The output mentioned

7646 requests: 14 error(s) and 3 item(s) reported on remote host

None of the errors were printed on the screen, where can I find more info about these errors that it indicated? or where does it stores its reports by default?

Anders
  • 64,406
  • 24
  • 178
  • 215
pal4life
  • 177
  • 1
  • 8
  • Check your `nikto.conf` file for the location. The manual explains: https://cirt.net/nikto2-docs/configuration.html – schroeder Oct 13 '16 at 20:50

3 Answers3

1

Try this:

perl nikto.pl -verbose -h example.com

Also look up -output parameter in nikto manual.

Anders
  • 64,406
  • 24
  • 178
  • 215
JacekM
  • 11
  • 1
0

Increase the verbosity while launching the command.

nikto -Display -verbose -host example.com

Also if you are using a nix system you can navigate to

/etc/nikto.conf

Here you can find all the nikto related files. You can find something like this:

*Location of Nikto*  
EXECDIR=/var/lib/nikto   
*Location of plugin dir*  
PLUGINDIR=/var/lib/nikto/plugins  
*Location of database dir*    
DBDIR=/var/lib//nikto/databases  
*Location of template dir*  
TEMPLATEDIR=/var/lib/nikto/templates  
*Location of docs dir*  
DOCDIR=/var/lib/nikto/docs 
schroeder
  • 123,438
  • 55
  • 284
  • 319
7h1n0b1
  • 64
  • 5
-1

You should run:

perl nikto.pl -h example.com > outputfile.txt

Then it will be written in outputfile.txt.

Anders
  • 64,406
  • 24
  • 178
  • 215
Mr. Pundir
  • 101
  • 1
  • That wont work since it will just add to output file what it prints on screen which is "7646 requests: 14 error(s) and 3 item(s) reported on remote host" . I need to see actual detail information on those errors. – pal4life Oct 17 '16 at 16:42