tldr/pages/common/nikto.md

28 lines
699 B
Markdown
Raw Normal View History

2017-12-12 17:51:28 +00:00
# nikto
2017-12-12 17:39:26 +00:00
2017-12-12 17:51:28 +00:00
> Web server scanner which performs comprehensive tests against web servers for multiple items, including over 6700 potentially dangerous files/programs.
2017-12-12 17:39:26 +00:00
2017-12-12 17:51:28 +00:00
- To update to the latest plugins and databases:
2017-12-12 17:39:26 +00:00
`perl nikto.pl -update`
- The most basic Nikto scan requires simply a host to target:
`perl nikto.pl -h 192.168.0.1`
2017-12-12 17:51:28 +00:00
- To check on a different port:
2017-12-12 17:39:26 +00:00
`perl nikto.pl -h 192.168.0.1 -p 443`
2017-12-12 18:00:03 +00:00
- Scan ports and protocols with full URL syntax:
2017-12-12 17:39:26 +00:00
`perl nikto.pl -h https://192.168.0.1:443/`
2017-12-12 17:51:28 +00:00
- Scan multiple ports in the same scanning session:
2017-12-12 17:39:26 +00:00
`perl nikto.pl -h 192.168.0.1 -p 80,88,443`
2017-12-12 17:51:28 +00:00
- Set the proxy on the command line:
2017-12-12 17:39:26 +00:00
2017-12-12 18:00:03 +00:00
`perl nikto.pl -h localhost -useproxy http://localhost:8080/`