This commit is contained in:
v-sabiraj 2023-02-20 11:58:18 +05:30 коммит произвёл GitHub
Родитель 43c0bf348c
Коммит 284f45dc79
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1959,7 +1959,7 @@ foreach ($inputFile in $(Get-ChildItem $path)) {
if ($yaml.relevantTechniques -match ' ') {
$yaml.relevantTechniques = $yaml.relevantTechniques -replace ' ', ''
}
$alertRule | Add-Member -NotePropertyName techniques -NotePropertyValue ($yaml.relevantTechniques | ForEach-Object { ($_ -split "\.")[0] }) # Add relevantTechniques property if exists
$alertRule | Add-Member -NotePropertyName techniques -NotePropertyValue ([array]($yaml.relevantTechniques | ForEach-Object { ($_ -split "\.")[0] })) # Add relevantTechniques property if exists
}
$alertRule.description = $yaml.description.TrimEnd() #remove newlines at the end of the string if there are any.