This commit is contained in:
Pete Bryan 2019-09-20 11:16:23 -07:00 коммит произвёл GitHub
Родитель 5fe667f74b
Коммит 79c6450643
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -36,7 +36,7 @@ query: |
//| where DeviceAction !~ "block-url"
//Select logs where URL data is populated
| extend Url = columnifexists("RequestURL", "None")
| extend Url = iif(Url == "", extract("([^\"]+)", 1, tolower(AdditionalExtensions)), trim('"', Url))
| extend Url = iif(isempty(Url), extract("([^\"]+)", 1, tolower(AdditionalExtensions)), trim('"', Url))
| extend Url = iif(Url !startswith "http://" and ApplicationProtocol != "ssl", strcat('http://', Url), iif(Url !startswith "https://" and ApplicationProtocol == "ssl", strcat('https://', Url), Url))
| where isnotempty(Url)
| extend CSL_TimeGenerated = TimeGenerated