Oct 9, 2024
Part 1: TCP Capture from FTP Session
Part 2: UDP Capture from TFTP Session
Starting Wireshark:
emp0s3).Connecting to FTP Server:
ftp ftp.cdc.govget readme command.Analyzing Captured TCP Packets:
tcp && ip.addr == 198.246.117.106 (check for updated IP if needed).FTP Communication Flow:
Setting Up TFTP Server:
echo "This file contains my TFTP data" > srv/tftp/my_tftp_dataCapturing TFTP Traffic:
tftp 10.0.0.11 get my_tftp_dataAnalyzing UDP Packets:
Closing the Session:
quit command to close the FTP session.