Next: , Previous: http-abstractbro, Up: Predefined Variables



6.1.17 http-request.bro

skip_remote_sensitive_URIs : pattern
URIs matching this pattern should not be considered sensitive if accessed remotely, i.e., by a local client.

have_skip_remote_sensitive_URIs : bool

Due to a quirk in Bro, this must be redef'ed to T if you want to use skip_remote_sensitive_URIs.
Note: This variable is const, so may only be changed via redef.

sensitive_URIs : pattern

URIs matching this pattern, but not matching worm_URIs, are logged. See also skip_remote_sensitive_URIs and senstive_post_URIs.
Note: This variable is const, so may only be changed via redef.

worm_URIs : pattern

URIs matching this pattern are not logged even if they match sensitive_URIs, since worms are so common they would clutter the logs.
Note: This variable is const, so may only be changed via redef.

sensitive_post_URIs : pattern

URIs matching this pattern are logged if they are used with the HTTP “POST” method (rather than “GET”).
Note: This variable is const, so may only be changed via redef.