Add Intel::ADDR lookup to host field

IP addresses are often seen in the HTTP host field; this change checks if the value in the host field is a valid IP address and processes the Intel::seen event to check for an Intel::ADDR indicator.
This commit is contained in:
jshlbrd 2014-04-15 09:07:21 -04:00
parent 9b672f9e7f
commit 2dbca1ccd9

View file

@ -8,12 +8,18 @@ event http_header(c: connection, is_orig: bool, name: string, value: string)
{
switch ( name )
{
case "HOST":
Intel::seen([$indicator=value,
$indicator_type=Intel::DOMAIN,
$conn=c,
$where=HTTP::IN_HOST_HEADER]);
break;
case "HOST":
if ( is_valid_ip(value) )
Intel::seen([$host=to_addr(value),
$conn=c,
$where=HTTP::IN_HOST_HEADER]);
else
Intel::seen([$indicator=value,
$indicator_type=Intel::DOMAIN,
$conn=c,
$where=HTTP::IN_HOST_HEADER]);
break;
case "REFERER":
Intel::seen([$indicator=sub(value, /^.*:\/\//, ""),