Importing Nmap Scan Results Into MSF
Lab Environment
In this lab environment, you will be provided with GUI access to a Kali machine. The target machines will be accessible at demo.ine.local running a vulnerable RDP service.
Objective: To import Nmap scan results into MSF.
Tools
The best tools for this lab are:
Nmap
msfconsole
Writeup
ping -c 1 demo.ine.local
nmap -p- -sSVC --min-rate 7000 -n -Pn demo.ine.local -vvv -oX data.xml
Start Metasploit & PostgreSQL
service postgresql start
msfconsole
Initialize the Database (if not already done):
db_statusdb_rebuild_cache
db_import data.xml
View Imported Hosts/Services:
hosts
services
vulns
Last updated