#!/bin/bash

clear
#sudo apt install nmap nikto wig whatweb; nmap --script-updatedb
echo Target:
read x
echo
echo Running Nmap scan...
nmap -A -v -sV -sC -Pn --script vulners,http-sql-injection,http-unsafe-output-escaping,http-enum.nse $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
clear
