我已经创建了indicator并将其推送到Microsoft Azure Sentinel。我已经检查了我可以使用GET request访问它
https://graph.microsoft.com/beta/security/tiIndicators/{id}
然而,当我尝试使用补丁请求和相同的链接来更新指示器时,我得到了这个错误:
"code": "NotFound",
"message": "The requested resource was not found."我还尝试通过将id和新属性发布到:https://graph.microsoft.com/beta/security/tiIndicators/updateTiIndicators来更新这个指示器
但是我得到了这个错误:
"code": "",
"message": "Object reference not set to an instance of an object."我不知道为什么我会得到这样的错误,以及我如何更新指示器。
发布于 2019-11-05 08:40:13
修补程序威胁情报指示器需要'targetProduct‘和'expirationDateTime’。请确保在您的json中指定targetProduct (在本例中为'Azure Sentinel‘和expirationDateTime )。
https://stackoverflow.com/questions/58560344
复制相似问题