Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #5 from ralish/lsa-protection
Browse files Browse the repository at this point in the history
Add sample subscription for monitoring LSA protection events
  • Loading branch information
iadgovuser1 committed Jun 21, 2017
2 parents d23d6de + 9688860 commit 122aadf
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Subscriptions/LSA Protection.xml
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<Subscription xmlns="http://schemas.microsoft.com/2006/03/windows/events/subscription">
<SubscriptionId>Additional LSA Protection</SubscriptionId>
<SubscriptionType>SourceInitiated</SubscriptionType>
<Description>Events for additional LSA protection issues</Description>
<Enabled>false</Enabled>
<Uri>http://schemas.microsoft.com/wbem/wsman/1/windows/EventLog</Uri>

<ConfigurationMode>Custom</ConfigurationMode>
<Delivery Mode="Push">
<Batching>
<MaxItems>1</MaxItems>
<MaxLatencyTime>1000</MaxLatencyTime>
</Batching>
<PushSettings>
<Heartbeat Interval="40000"/>
</PushSettings>
</Delivery>

<Query>
<![CDATA[
<QueryList>
<Query Id="0" Path="Microsoft-Windows-Wininit/Diagnostic">
<!-- Code Integrity events -->
<Select Path="Microsoft-Windows-CodeIntegrity/Operational">
*[System[Provider[@Name='Microsoft-Windows-CodeIntegrity']
and (EventID=3033 or EventID=3063 or EventID=3065 or EventID=3066)]]
</Select>
</Query>
<Query Id="1" Path="System">
<!-- Process startup events -->
<Select Path="System">
*[System[Provider[@Name='Microsoft-Windows-Wininit']
and (EventID=12)]]
</Select>
</Query>
</QueryList>
]]>
</Query>

<ReadExistingEvents>true</ReadExistingEvents>
<TransportName>HTTP</TransportName>
<ContentFormat>RenderedText</ContentFormat>
<Locale Language="en-AU"/>
<LogFile>ForwardedEvents</LogFile>
<PublisherName>Microsoft-Windows-EventCollector</PublisherName>
<AllowedSourceNonDomainComputers></AllowedSourceNonDomainComputers>
<AllowedSourceDomainComputers>O:NSG:BAD:P(A;;GA;;;DC)S:</AllowedSourceDomainComputers>
</Subscription>

0 comments on commit 122aadf

Please sign in to comment.