forked from TallJohnBrown/sysmon-modular
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Merge-SysmonXml.ps1
282 lines (264 loc) · 8.92 KB
/
Merge-SysmonXml.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
function Merge-AllSysmonXml {
param(
[Parameter(Mandatory = $true, ValueFromPipeline = $true, ParameterSetName = 'ByPath')]
[string[]]$Path,
[Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = 'ByLiteralPath')]
[Alias('PSPath')]
[string[]]$LiteralPath,
[switch]$AsString,
[switch]$PreserveComments
)
begin {
$FilePaths = @()
$XmlDocs = @()
}
process {
if ($PSCmdlet.ParameterSetName -eq 'ByPath') {
foreach ($P in $Path) {
$FilePaths += (Resolve-Path -Path:$P).ProviderPath
}
}
else {
foreach ($LP in $LiteralPath) {
$FilePaths += (Resolve-Path -LiteralPath:$LP).ProviderPath
}
}
}
end {
foreach ($FilePath in $FilePaths) {
$doc = [xml]::new()
Write-Verbose "Loading doc from '$FilePath'..."
$doc.Load($FilePath)
if (-not $PreserveComments) {
Write-Verbose "Stripping comments for '$FilePath'"
$commentNodes = $doc.SelectNodes('//comment()')
foreach ($commentNode in $commentNodes) {
$null = $commentNode.ParentNode.RemoveChild($commentNode)
}
}
$XmlDocs += $doc
}
if ($XmlDocs.Count -lt 2) {
throw 'At least 2 sysmon configs expected'
return
}
$newDoc = $XmlDocs[0]
for ($i = 1; $i -lt $XmlDocs.Count; $i++) {
$newDoc = Merge-SysmonXml -Source $newDoc -Diff $XmlDocs[$i]
}
if ($AsString) {
try {
$sw = [System.IO.StringWriter]::new()
$xw = [System.Xml.XmlTextWriter]::new($sw)
$xw.Formatting = 'Indented'
$newDoc.WriteContentTo($xw)
return $sw.ToString()
}
finally {
$xw.Dispose()
$sw.Dispose()
}
}
else {
return $newDoc
}
}
}
function Merge-SysmonXml {
param(
[Parameter(Mandatory = $true, ParameterSetName = 'FromXmlDoc')]
[xml]$Source,
[Parameter(Mandatory = $true, ParameterSetName = 'FromXmlDoc')]
[xml]$Diff,
[switch]$AsString
)
$Rules = [ordered]@{
ProcessCreate = [ordered]@{
include = @()
exclude = @()
}
FileCreateTime = [ordered]@{
include = @()
exclude = @()
}
NetworkConnect = [ordered]@{
include = @()
exclude = @()
}
ProcessTerminate = [ordered]@{
include = @()
exclude = @()
}
DriverLoad = [ordered]@{
include = @()
exclude = @()
}
ImageLoad = [ordered]@{
include = @()
exclude = @()
}
CreateRemoteThread = [ordered]@{
include = @()
exclude = @()
}
RawAccessRead = [ordered]@{
include = @()
exclude = @()
}
ProcessAccess = [ordered]@{
include = @()
exclude = @()
}
FileCreate = [ordered]@{
include = @()
exclude = @()
}
RegistryEvent = [ordered]@{
include = @()
exclude = @()
}
FileCreateStreamHash = [ordered]@{
include = @()
exclude = @()
}
PipeEvent = [ordered]@{
include = @()
exclude = @()
}
WmiEvent = [ordered]@{
include = @()
exclude = @()
}
DnsQuery = [ordered]@{
include = @()
exclude = @()
}
FileDelete = [ordered]@{
include = @()
exclude = @()
}
}
$newDoc = [xml]@'
<Sysmon schemaversion="4.70">
<DriverName>SysDrv</DriverName>
<HashAlgorithms>SHA256</HashAlgorithms> <!-- This now also determines the file names of the files preserved (String) -->
<CheckRevocation/>
<CaptureClipboard/>
<DnsLookup>True</DnsLookup> <!-- Disables lookup behavior, default is True (Boolean) -->
<ArchiveDirectory>Archive</ArchiveDirectory><!-- Sets the name of the directory in the C:\ root where preserved files will be saved (String)-->
<EventFiltering>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 1 == Process Creation. -->
<ProcessCreate onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 2 == File Creation Time. -->
<FileCreateTime onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 3 == Network Connection. -->
<NetworkConnect onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 5 == Process Terminated. -->
<ProcessTerminate onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 6 == Driver Loaded. -->
<DriverLoad onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 7 == Image Loaded. -->
<ImageLoad onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 8 == CreateRemoteThread. -->
<CreateRemoteThread onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 9 == RawAccessRead. -->
<RawAccessRead onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 10 == ProcessAccess. -->
<ProcessAccess onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 11 == FileCreate. -->
<FileCreate onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 12,13,14 == RegObject added/deleted, RegValue Set, RegObject Renamed. -->
<RegistryEvent onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 15 == FileStream Created. -->
<FileCreateStreamHash onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 17,18 ==,PipeEvent. Log Named pipe created & Named pipe connected -->
<PipeEvent onmatch="exclude"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 19,20,21 == WmiEvent. Log all WmiEventFilter, WmiEventConsumer, WmiEventConsumerToFilter activity-->
<WmiEvent onmatch="include"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 24 == Detect and log clipboard changes-->
<ClipboardChange onmatch="exclude"/>
</RuleGroup>
<RuleGroup name="" groupRelation="or">
<!-- Event ID 25 == Process tampering events -->
<ProcessTampering onmatch="exclude"/>
</RuleGroup>
</EventFiltering>
</Sysmon>
'@
$EventFilteringRoot = $newDoc.SelectSingleNode('//Sysmon/EventFiltering')
foreach ($key in $Rules.Keys) {
foreach ($config in $Source, $Diff) {
foreach ($rule in $config.SelectNodes("//RuleGroup/$Key")) {
$clone = $rule.CloneNode($true)
$onmatch = ([System.Xml.XmlElement]$clone).GetAttribute('onmatch')
if (-not $onmatch) {
$onmatch = 'include'
}
$Rules[$key][$onmatch] += $clone
}
}
foreach ($matchType in 'include', 'exclude') {
Write-Verbose "About to merge ${key}:${matchType}"
foreach ($rule in $Rules[$key][$matchType]) {
if ($existing = $newDoc.SelectSingleNode("//RuleGroup/$key[@onmatch = '$matchType']")) {
foreach ($child in $rule.ChildNodes) {
$newNode = $newDoc.ImportNode($child, $true)
$null = $existing.AppendChild($newNode)
}
}
else {
$newRuleGroup = $newDoc.CreateElement('RuleGroup')
$newRuleGroup.SetAttribute('groupRelation', 'or')
$newNode = $newDoc.ImportNode($rule, $true)
$null = $newRuleGroup.AppendChild($newNode)
$null = $EventFilteringRoot.AppendChild($newRuleGroup)
}
}
}
}
if ($AsString) {
try {
$sw = [System.IO.StringWriter]::new()
$xw = [System.Xml.XmlTextWriter]::new($sw)
$xw.Formatting = 'Indented'
$newDoc.WriteContentTo($xw)
return $sw.ToString()
}
finally {
$xw.Dispose()
$sw.Dispose()
}
}
else {
return $newDoc
}
}