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?

WindowsのイベントビューアーでセキュリティログをLogonProcessNameでフィルターしようとしたらハマった件

Last updated at Posted at 2023-12-06

Windowsのイベントビューアーのセキュリティログで、失敗の監査のうちログオンプロセスが「Advapi」以外のものを抽出しようとしてハマったのでメモして共有します。

結論としては以下でできました。
「現在のログをフィルター」ダイアログでXMLタブを選択。「手動でクエリを編集する」にチェックを入れて以下XMLを入力しました。

フィルター
<QueryList>
  <Query Id="0" Path="Security">
    <Select Path="Security">*[System[band(Keywords,4503599627370496)]
and EventData[Data[@Name="LogonProcessName"]!="Advapi  "]]</Select>
  </Query>
</QueryList>

フィルタの条件の「Advapi 」のところ、最後にスペースが2つついているのですが、イベントビューアーではこれが確認できなかったためドハマりしました。
試行錯誤中にイベントをテキストとしてコピーして、テキストエディタに貼り付けたときにこのスペースを発見。フィルタの条件にも追加したら無事に抽出できました!

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?