Vulnerability
Perform vulnerability scanning and exploit research.
Vulnerability Scanner
Nessus
Vulnerability scanner very powerful.
Runs on port 8834 tcp.
Nessus has two parts (both can be on the same machine):
Client to configure the scan.
Server to perform the scan and send the results to the client.
Interactive script for download report
./nessus_downloader.rb
OpenVAS
Vulnerability scanner open-source and free.
Runs on port 8080 tcp.
Like nessus, OpenVAS also has two parts (both can be on the same machine):
Client to configure the scan.
Server to perform the scan and send the results to the client.
sudo apt-get install gvm && openvasInitialization process (can take up to 30 minutes):
gvm-setup
# note credentialsStart & Stop:
gvm-start
gvm-stopGo to: https://<MY_IP>:8080/
Tools & Other
/usr/share/nmap/scripts/
nmap --script-updatedb
nmap --script--help <SCRIPT>
nmap --script "<SCRIPT or TYPE[safe,vuln,external]>" <IP>
Server Web Scanner.
Edit /var/lib/nikto/nikto.conf.default
nikto -h <URL> -o <OUTPUT.html> -Format html
Research Exploit
Very important to analyze the exploits found very carefully, they could be harmful!
Exploit-db database locally and offline.
sudo apt install exploitdb
searchsploit -u (update)
searchsploit <STRING> (get ID)
searchsploit -w <STRING> (get LINK)
searchsploit -x <ID> (see l'exploit)
searchsploit -m <ID> (Copy exploit + info)
Rapid7 (metasploit)
Last updated
Was this helpful?