0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Microsoft Sentinelに取り込んだOkta System Logの文字化けを修正する

Posted at

Okta の System Log をMicrosoft Sentinelに取り込むとき、データコネクトのテンプレートが用意されているのでそれを使えば取り込むことが可能です。ですが、マルチバイト文字を取り込むと「????????」と文字化けしてしまいます。その場合の修正方法を記述します。
image.png

このデータコネクタを作成すると関数アプリで PowerShell が使用されます。その run.ps1 を以下のように修正することで文字化けが解消されます。

run.ps1
# 128行目
- $responseObj = $response | ConvertFrom-Json
+ $responseObj = @($response.content) | ConvertFrom-Json
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?