mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
12 lines
373 B
Text
12 lines
373 B
Text
@load base/frameworks/intel
|
|
@load base/protocols/http/utils
|
|
@load ./where-locations
|
|
|
|
event http_message_done(c: connection, is_orig: bool, stat: http_message_stat) &group="Intel::URL"
|
|
{
|
|
if ( is_orig && c?$http )
|
|
Intel::seen([$indicator=HTTP::build_url(c$http),
|
|
$indicator_type=Intel::URL,
|
|
$conn=c,
|
|
$where=HTTP::IN_URL]);
|
|
}
|