Update ExchangeServerProxyLogonURI.yaml

Exclude local addresses, using the ipv4_is_private operator
This commit is contained in:
Arjun Trivedi 2022-04-26 14:37:54 +05:30 коммит произвёл GitHub
Родитель e8b79a46b7
Коммит bca4d5f234
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -15,7 +15,8 @@ tags:
query: |
W3CIISLog
| where not(ipv4_is_private(cIP))
//Exclude local addresses, using the ipv4_is_private operator
| where ipv4_is_private(cIP) == false and cIP !startswith "fe80" and cIP !startswith "::" and cIP !startswith "127."
| where (csUriStem matches regex @"\/owa\/auth\/[A-Za-z0-9]{1,30}\.js") or (csUriStem matches regex @"\/ecp\/[A-Za-z0-9]{1,30}\.(js|flt|css)")
| project TimeGenerated, sSiteName, csMethod, csUriStem, sPort, sIP, cIP, csUserAgent
| extend timestamp = TimeGenerated
@ -27,4 +28,4 @@ entityMappings:
- identifier: DestinationPort
columnName: sPort
- identifier: SourceAddress
columnName: cIP
columnName: cIP