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,9 +191,10 @@ 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
Entry_1:
Name: Notes
Description: Notes for FTP
Note: """
Note: |
Anonymous Login
-bi <<< so that your put is done via binary
@ -204,24 +205,25 @@ wget --no-passive-ftp --mirror 'ftp://anonymous:anonymous@10.10.10.98'
if PASV transfer is disabled
https://book.hacktricks.xyz/pentesting/pentesting-ftp
"""
Entry_2:
Name: Banner Grab
Description: Grab FTP Banner via telnet
Command: """telnet -vn {IP} 21"""
Command: telnet -vn {IP} 21
Entry_3:
Name: Cert Grab
Description: Grab FTP Certificate if existing
Command: """openssl s_client -connect {IP}:21 -starttls ftp"""
Command: openssl s_client -connect {IP}:21 -starttls ftp
Entry_4:
Name: nmap ftp
Description: Anon login and bounce FTP checks are performed
Command: """nmap --script ftp-* -p 21 {IP}"""
Command: nmap --script ftp-* -p 21 {IP}
Entry_5:
Name: Browser Connection
Description: Connect with Browser
Note: """
ftp://anonymous:anonymous@{IP}
"""
Note: ftp://anonymous:anonymous@{IP}
```