Nmap

Search for hosts on a network

nmapAutomator

Run all scans:

sudo nmapAutomator -H <remote_ip> -t all

Ippsec's Method

Run a full scan in the background:

nmap -sC -sV -oA nmap/<hostname> <remote_ip>

Options:

-sC: use default scripts

-sV: enumerate versions

-oA: output all formats

Last updated