-
Notifications
You must be signed in to change notification settings - Fork 309
FTP
justinbastress edited this page Feb 7, 2018
·
1 revision
The HTTP module is based on the original zgrab grabber.
- BaseFlags
- TLSFlags
-
--authtls
: if present, attemptAUTH TLS
orAUTH SSL
and do a TLS handshake after grabbing the normal banner.
- Read the banner sent by the server after connecting, of the form
'200 OK\r\n'
- If
--authtls
is set, sendAUTH TLS
(and if that fails,AUTH SSL
), then do a TLS handshake, and collect the certificates etc.
-
banner
: The banner sent by the server upon connecting (e.g.'220 (FTPD 1.2.3)\r\n'
) -
auth_tls
: The response from theAUTH TLS
command, if--authtls
was sent. -
auth_ssl
: The response from theAUTH SSL
command, if--authtls
was sent andAUTH TLS
failed. -
tls
: The TLS logs (see TLSFlags)