Imports
nmap
Step 1: Run Nmap to Save Results
nmap -Pn -sV -O -oX nmap-msf.xml demo.ine.localStep 2: Start Metasploit Famework & Create a Workspace (Optional)
# Start Postgres
service postgresql start
# Start Metasploit
msfconsole
db_status
# When db_status says [*] postgresql selected, no connection
msfdb delete
msfdb init
cp /usr/share/metasploit-framework/config/database.yml /root/.msf6
service postgresql start
msfconsole
db_status
# Workspace
workspace
workspace -a name_of_workspaceStep 3: Import Nmap Result
Step 4: View Hosts & Services
Step 5: Run nmap directly from MSF
Nessus
Step 1: Export the scan results as a .nessus file (XML format).
Step 2: Import nessus results
Step 3: View Hosts & Services
Step 4: View Vulnerabilities & Search CVEs
Last updated