Posts

Showing posts from March, 2020

How to use NIKTO

Image
Before attacking any website, a hacker or penetration tester will first compile a list of target surfaces. After they've used some good recon and found the right places to point their scope at, they'll use a web server scanning tool such as Nikto for hunting down vulnerabilities that could be potential attack vectors. Nikto is a web server scanner which performs comprehensive tests against web servers for multiple items, including over 6700 potentially dangerous files/programs, checks for outdated versions of over 1250 servers, and version specific problems on over 270 servers. It also checks for server configuration items such as the presence of multiple index files, HTTP server options, and will attempt to identify installed web servers and software.  Installing Nikto if it’s not installed, you can run apt-get install nikto command: Nikto –H You can check the manual or usage of nikto by executing nikto –H or nikto -help command.   Usage...