Merge pull request #186 from CoolHandSquid/21-Yaml

21 Yaml
This commit is contained in:
Carlos Polop 2021-08-15 23:55:34 +02:00 committed by GitHub
commit d1867a05a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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