NIKTO
this is an open-source web server scanner that performs comprehensive tests against web servers for various security vulnerabilities. It’s primarily used to identify issues in web applications and configurations
INSTALLATION
root@oco:~$ sudo apt update && sudo apt install -y perl
root@oco:~$ git clone https://github.com/sullo/nikto
root@oco:~$ cd nikto/program
root@oco:~$ chmod +x ./nikto.pl
FINGERPRINTING/BANNER GRABBING
root@oco:~$ nikto -h {targetIP/domain} -Tuning b
* the -h option speficies the target host
* the -Tuning b option states to only run the Software Identification modules.
Last updated