1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/nikto.md

24 lines
575 B
Markdown
Raw Normal View History

2017-12-12 18:51:28 +01:00
# nikto
2017-12-12 18:39:26 +01:00
2017-12-13 09:11:08 +01:00
> Web server scanner which performs comprehensive tests against web servers for multiple items.
2017-12-12 18:39:26 +01:00
2017-12-12 21:38:03 +01:00
- Perform a basic Nikto scan against a target host:
2017-12-12 18:39:26 +01:00
2017-12-13 09:11:08 +01:00
`perl nikto.pl -h {{192.168.0.1}}`
2017-12-12 18:39:26 +01:00
2017-12-12 21:38:03 +01:00
- Specify the port number when performing a basic scan:
2017-12-12 18:39:26 +01:00
2017-12-13 09:11:08 +01:00
`perl nikto.pl -h {{192.168.0.1}} -p {{443}}`
2017-12-12 18:39:26 +01:00
2017-12-12 19:00:03 +01:00
- Scan ports and protocols with full URL syntax:
2017-12-12 18:39:26 +01:00
2017-12-13 09:11:08 +01:00
`perl nikto.pl -h {{https://192.168.0.1:443/}}`
2017-12-12 18:39:26 +01:00
2017-12-12 18:51:28 +01:00
- Scan multiple ports in the same scanning session:
2017-12-12 18:39:26 +01:00
2017-12-13 09:11:08 +01:00
`perl nikto.pl -h {{192.168.0.1}} -p {{80,88,443}}`
2017-12-12 18:39:26 +01:00
2017-12-13 13:54:36 +05:30
- Update to the latest plugins and databases:
2017-12-12 18:39:26 +01:00
2017-12-13 09:11:08 +01:00
`perl nikto.pl -update`