Microsoft Sentinelに取り込んだOkta System Logの文字化けを修正する
Okta の System Log をMicrosoft Sentinelに取り込むとき、データコネクトのテンプレートが用意されているのでそれを使えば取り込むことが可能です。ですが、マルチバイト文字を取り込むと「????????」と文字化けしてしまいます。その場合の修正方法を記述します。
このデータコネクタを作成すると関数アプリで PowerShell が使用されます。その run.ps1 を以下のように修正することで文字化けが解消されます。
run.ps1
# 128行目
- $responseObj = $response | ConvertFrom-Json
+ $responseObj = @($response.content) | ConvertFrom-Json
Author And Source
この問題について(Microsoft Sentinelに取り込んだOkta System Logの文字化けを修正する), 我々は、より多くの情報をここで見つけました https://qiita.com/urushibata/items/350188d467ed872b23ae著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .