Udated solution package with the changes of field mapping with ExternalId field.

This commit is contained in:
jayeshssc 2023-05-19 18:45:53 +05:30
Родитель 3b0ba34ec3
Коммит 76b74365a8
6 изменённых файлов: 29 добавлений и 31 удалений

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

@ -117,7 +117,6 @@ class CofenseToSentinelMapping:
data = {}
continue
indicator_id = indicator.get("id", "")
data["properties"]["externalId"] = indicator_id
data["properties"]["displayName"] = "Cofense Triage : {}".format(
indicator_id
)
@ -181,7 +180,8 @@ class CofenseToSentinelMapping:
LOGS_STARTS_WITH, __method_name, COFENSE_TO_SENTINEL
)
)
self.microsoft_obj.create_indicator(data)
indicator_response = self.microsoft_obj.create_indicator(data)
indicator_externalId = indicator_response.get("properties", {}).get("externalId", "")
applogger.debug(
"{}(method={}) : {}: indicator created successfully.".format(
LOGS_STARTS_WITH, __method_name, COFENSE_TO_SENTINEL
@ -190,6 +190,7 @@ class CofenseToSentinelMapping:
updated_at = indicator.get("attributes", {}).get("updated_at", "")
reportdata = {
"indicator_id": indicator_id,
"external_id": "{}-{}".format(indicator_externalId, source_cofence),
"report_link": report_link,
"updated_at": updated_at
}

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

@ -68,7 +68,7 @@ class MicrosoftSentinel:
response_json,
)
)
return
return response_json
elif response.status_code == 429:
applogger.error(
"{}(method={}) : {} : trying again error 429.".format(

Двоичные данные
Solutions/CofenseTriage/Package/2.0.1.zip Normal file

Двоичный файл не отображается.

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

@ -100,6 +100,20 @@
"uri": "https://docs.microsoft.com/azure/sentinel/tutorial-monitor-your-data"
}
}
},
{
"name": "workbook1",
"type": "Microsoft.Common.Section",
"label": null,
"elements": [
{
"name": "workbook1-text",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": null
}
}
]
}
]
}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны