Nikto
Nikto tutorial: Basic usage
There isnt much output, so you generally dont know whats happening, so it might be good to enable verbose output:
One of the great things you can do with nikto is to specify the type of checks it runs: from the man page:
-Tuning
Tuning options will control the test that Nikto will use against a target. By default, if any options are specified, only those tests will be performed. If the “x” option is used, it will reverse the logic and exclude only those tests. Use the reference number or letter to specify the type, multiple may be used:
The given string will be parsed from left to right, any x characters will apply to all characters to the right of the character.
Specifying the test
So, to only perform an SQL injection test against your target:
or to run everything except DOS
Saving results
You can output to a file with the -o option You can specify the format of the output file with -Format [csv htm txt or xml]
eg to perform an SQL injection test and save results to an html file with verbose output for your terminal:
Last updated
Was this helpful?