# This file was automatically generated by bifcl from /Users/jon/tmp/bro-2.5.5/src/analyzer/protocol/finger/events.bif (plugin mode). ## Generated for Finger requests. ## ## See `Wikipedia `__ for more ## information about the Finger protocol. ## ## c: The connection. ## ## full: True if verbose information is requested (``/W`` switch). ## ## username: The request's user name. ## ## hostname: The request's host name. ## ## .. bro:see:: finger_reply ## ## .. todo:: Bro's current default configuration does not activate the protocol ## analyzer that generates this event; the corresponding script has not yet ## been ported to Bro 2.x. To still enable this event, one needs to ## register a port for it or add a DPD payload signature. export { global finger_request: event(c: connection , full: bool , username: string , hostname: string ); ## Generated for Finger replies. ## ## See `Wikipedia `__ for more ## information about the Finger protocol. ## ## c: The connection. ## ## reply_line: The reply as returned by the server ## ## .. bro:see:: finger_request ## ## .. todo:: Bro's current default configuration does not activate the protocol ## analyzer that generates this event; the corresponding script has not yet ## been ported to Bro 2.x. To still enable this event, one needs to ## register a port for it or add a DPD payload signature. global finger_reply: event(c: connection , reply_line: string ); } # end of export section module GLOBAL;