15 lines
595 B
Markdown
15 lines
595 B
Markdown
<!-- #build2 -->
|
|
## Nikto Web Vulnerability Scanner
|
|
[Nikto](https://github.com/sullo/nikto) from Sullo is a web server assessment tool. It is designed to find various default and insecure files, configurations and programs on any type of web server.
|
|
|
|
Call it without arguments to display the full help:
|
|
|
|
`docker run --rm git.nixc.us/colin/nikto`
|
|
|
|
Basic usage
|
|
`docker run --rm git.nixc.us/colin/nikto -h https://www.example.com`
|
|
|
|
To save the report in a specific format, mount /tmp as a volume:
|
|
|
|
`docker run --rm -v $(pwd):/tmp git.nixc.us/colin/nikto -h http://www.example.com -o /tmp/out.json`
|