diff --git a/pentesting/pentesting-ftp/README.md b/pentesting/pentesting-ftp/README.md index 19b89875..e078db81 100644 --- a/pentesting/pentesting-ftp/README.md +++ b/pentesting/pentesting-ftp/README.md @@ -191,37 +191,39 @@ Protocol_Name: FTP #Protocol Abbreviation if there is one. Port_Number: 21 #Comma separated if there is more than one. Protocol_Description: File Transfer Protocol #Protocol Abbreviation Spelled out -Name: Notes -Description: Notes for FTP -Note: """ -Anonymous Login --bi <<< so that your put is done via binary +Entry_1: + Name: Notes + Description: Notes for FTP + Note: | + Anonymous Login + -bi <<< so that your put is done via binary -wget --mirror 'ftp://ftp_user:UTDRSCH53c"$6hys@10.10.10.59' -^^to download all dirs and files + wget --mirror 'ftp://ftp_user:UTDRSCH53c"$6hys@10.10.10.59' + ^^to download all dirs and files -wget --no-passive-ftp --mirror 'ftp://anonymous:anonymous@10.10.10.98' -if PASV transfer is disabled + wget --no-passive-ftp --mirror 'ftp://anonymous:anonymous@10.10.10.98' + if PASV transfer is disabled -https://book.hacktricks.xyz/pentesting/pentesting-ftp -""" + https://book.hacktricks.xyz/pentesting/pentesting-ftp -Name: Banner Grab -Description: Grab FTP Banner via telnet -Command: """telnet -vn {IP} 21""" +Entry_2: + Name: Banner Grab + Description: Grab FTP Banner via telnet + Command: telnet -vn {IP} 21 -Name: Cert Grab -Description: Grab FTP Certificate if existing -Command: """openssl s_client -connect {IP}:21 -starttls ftp""" +Entry_3: + Name: Cert Grab + Description: Grab FTP Certificate if existing + Command: openssl s_client -connect {IP}:21 -starttls ftp -Name: nmap ftp -Description: Anon login and bounce FTP checks are performed -Command: """nmap --script ftp-* -p 21 {IP}""" +Entry_4: + Name: nmap ftp + Description: Anon login and bounce FTP checks are performed + Command: nmap --script ftp-* -p 21 {IP} -Name: Browser Connection -Description: Connect with Browser -Note: """ -ftp://anonymous:anonymous@{IP} -""" +Entry_5: + Name: Browser Connection + Description: Connect with Browser + Note: ftp://anonymous:anonymous@{IP} ```