1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 05:22:11 +02:00
tldr/pages/common/nikto.md
Agniva De Sarker b887a6506c
Fixed a typo
2017-12-13 13:54:36 +05:30

23 lines
575 B
Markdown

# nikto
> 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 the latest plugins and databases:
`perl nikto.pl -update`