OSCP+ Notes
  • 📙oscp+ notes
  • Reconnaissance
    • Discovery
      • DNS Hostname
      • Subdomain Discovery
      • Directory Discovery
    • Host Scan
      • Nmap
  • Enumeration
    • Services
      • FTP
      • SSH
  • Misc
    • SSH
    • RDP
    • File Transfer
    • Full Interactive Shell
    • Pivoting and Tunneling
Powered by GitBook
On this page
  • Connection
  • Manual
  • Browser
  • Nmap FTP Enumeration
  • Netexec
  1. Enumeration
  2. Services

FTP

Always try to login anonymously

Username: anonymous Password: anonymous (or leave it blank)

Connection

Manual

ftp IP
nc -vn IP 21

Browser

ftp://IP

Nmap FTP Enumeration

Scripts

ls -lh /usr/share/nmap/scripts/ | grep ftp
nmap IP -p 21 -sV --script=exampleScript1.nse,exampleScript2.nse

Netexec

netexec ftp IP
netexec ftp IP -u 'test' -p ''
netexec ftp IP -u 'anonymous' -p ''

FTP SecLists Wordlist

/usr/share/seclists/Passwords/Default-Credentials/ftp-betterdefaultpasslist.txt
PreviousServicesNextSSH

Last updated 6 months ago