Start detecting Microsoft Sharepoint servers.

This commit is contained in:
Seth Hall 2011-07-06 09:18:22 -04:00
parent c8f5a1eeaa
commit 46d0cf517b

View file

@ -49,5 +49,10 @@ event http_header(c: connection, is_orig: bool, name: string, value: string) &pr
Software::found(c$id, Software::parse(value, c$id$resp_h, WEB_SERVER));
else if ( name == "X-POWERED-BY" )
Software::found(c$id, Software::parse(value, c$id$resp_h, WEB_APPSERVER));
else if ( name == "MICROSOFTSHAREPOINTTEAMSERVICES" )
{
value = cat("SharePoint/", value);
Software::found(c$id, Software::parse(value, c$id$resp_h, WEB_APPSERVER));
}
}
}