mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 20:48:21 +00:00
Start detecting Microsoft Sharepoint servers.
This commit is contained in:
parent
c8f5a1eeaa
commit
46d0cf517b
1 changed files with 5 additions and 0 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue