#!/bin/bash

clear
#sudo apt install nmap nikto wig whatweb; nmap --script-updatedb
echo WEBSITE SCANNER
echo Target:
read x
echo
echo Running Nikto scan...
nikto -Plugins auth,cgi,tests -host $x 
echo
echo Running Wig scan...
wig -v $x
echo
echo Running WhatWeb scan...
whatweb -v $x
echo DONE
read -n1; echo
