GLOBAL¶| Namespace: | GLOBAL |
|---|---|
| Source File: | /scripts/base/bif/plugins/Bro_FTP.events.bif.bro |
ftp_reply: event |
Generated for server-side FTP replies. |
ftp_request: event |
Generated for client-side FTP commands. |
ftp_reply¶| Type: | event (c: connection, code: count, msg: string, cont_resp: bool) |
|---|
Generated for server-side FTP replies.
See Wikipedia for more information about the FTP protocol.
| C: | The connection. |
|---|---|
| Code: | The numerical response code the server responded with. |
| Msg: | The textual message of the response. |
| Cont_resp: | True if the reply line is tagged as being continued to the next line. If so, further events will be raised and a handler may want to reassemble the pieces before processing the response any further. |
See also: ftp_request, fmt_ftp_port, parse_eftp_port, parse_ftp_epsv, parse_ftp_pasv, parse_ftp_port
ftp_request¶| Type: | event (c: connection, command: string, arg: string) |
|---|
Generated for client-side FTP commands.
See Wikipedia for more information about the FTP protocol.
| C: | The connection. |
|---|---|
| Command: | The FTP command issued by the client (without any arguments). |
| Arg: | The arguments going with the command. |
See also: ftp_reply, fmt_ftp_port, parse_eftp_port, parse_ftp_epsv, parse_ftp_pasv, parse_ftp_port