forked from mattifestation/WDACTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WDACAuditing.psm1
700 lines (518 loc) · 28.6 KB
/
WDACAuditing.psm1
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
# File paths are often in the format of device path (e.g. \Device\HarddiskVolumeN\).
# Get-Partition is used to map the volume number to a partition so that file paths can be normalized.
$Script:PartitionMapping = @{}
Get-Partition | Where-Object { $_.DriveLetter } | ForEach-Object { $PartitionMapping[$_.PartitionNumber.ToString()] = $_.DriveLetter }
# Try again. Get-Partition is flakey for some reason but it seems to work if tried a second time.
if ($PartitionMapping.Count -eq 0) {
Get-Partition | Where-Object { $_.DriveLetter } | ForEach-Object { $PartitionMapping[$_.PartitionNumber.ToString()] = $_.DriveLetter }
}
# Resolve user names from SIDs
$Script:UserMapping = @{}
Get-CimInstance Win32_Account -Property SID, Caption | ForEach-Object { $UserMapping[$_.SID] = $_.Caption }
$Script:Providers = @{
'Microsoft-Windows-AppLocker' = (Get-WinEvent -ListProvider Microsoft-Windows-AppLocker)
'Microsoft-Windows-CodeIntegrity' = (Get-WinEvent -ListProvider Microsoft-Windows-CodeIntegrity)
}
# Hash to cache event templates
$Script:EventTemplates = @{}
# This hashtable is used to resolve RequestedSigningLevel and ValidatedSigningLevel fields into human-readable properties
# For more context around signing levels, Alex Ionescu (@aionescu) has a great resource on them:
# http://www.alex-ionescu.com/?p=146
# They are also officially documented here: https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations#validatedsigninglevel
$Script:SigningLevelMapping = @{
[Byte] 0x0 = 'Not Checked'
[Byte] 0x1 = 'Unsigned'
[Byte] 0x2 = 'WDAC Code Integrity Policy'
[Byte] 0x3 = 'Developer-Signed'
[Byte] 0x4 = 'Authenticode-Signed'
[Byte] 0x5 = 'Microsoft Store-Signed PPL'
[Byte] 0x6 = 'Microsoft Store-Signed'
[Byte] 0x7 = 'Antimalware PPL'
[Byte] 0x8 = 'Microsoft-Signed'
[Byte] 0x9 = 'Custom4'
[Byte] 0xA = 'Custom5'
[Byte] 0xB = '.NET NGEN Signer'
[Byte] 0xC = 'Windows'
[Byte] 0xD = 'Windows PPL'
[Byte] 0xE = 'Windows TCB'
[Byte] 0xF = 'Custom6'
}
# These are documented here: https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations#signaturetype
$Script:SignatureTypeMapping = @{
[Byte] 0 = 'Unsigned'
[Byte] 1 = 'Embedded Authenticode Signature'
[Byte] 2 = 'Cached CI Extended Attribute Signature'
[Byte] 3 = 'Cached Catalog Signature'
[Byte] 4 = 'Catalog Signature'
[Byte] 5 = 'Cached CI Extended Attribute Hint'
[Byte] 6 = 'Appx or MSIX Package Catalog Verified'
[Byte] 7 = 'File was Verified'
}
# These are documented here: https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations#verificationerror
$Script:VerificationErrorMapping = @{
[Byte] 0 = 'Successfully verified signature'
[Byte] 1 = 'File has an invalid hash'
[Byte] 2 = 'File contains shared writable sections'
[Byte] 3 = 'File is not signed'
[Byte] 4 = 'Revoked signature'
[Byte] 5 = 'Expired signature'
[Byte] 6 = 'File is signed using a weak hashing algorithm which does not meet the minimum policy'
[Byte] 7 = 'Invalid root certificate'
[Byte] 8 = 'Signature was unable to be validated; generic error'
[Byte] 9 = 'Signing time not trusted'
[Byte] 10 = 'The file must be signed using page hashes for this scenario'
[Byte] 11 = 'Page hash mismatch'
[Byte] 12 = 'Not valid for a PPL (Protected Process Light)'
[Byte] 13 = 'Not valid for a PP (Protected Process)'
[Byte] 14 = 'The signature is missing the required ARM EKU'
[Byte] 15 = 'Failed WHQL check'
[Byte] 16 = 'Default policy signing level not met'
[Byte] 17 = "Custom policy signing level not met; returned when signature doesn't validate against an SBCP-defined set of certs"
[Byte] 18 = 'Custom signing level not met; returned if signature fails to match CISigners in UMCI'
[Byte] 19 = 'Binary is revoked by file hash'
[Byte] 20 = "SHA1 cert hash's timestamp is missing or after valid cutoff as defined by Weak Crypto Policy"
[Byte] 21 = 'Failed to pass WDAC policy'
[Byte] 22 = 'Not IUM (Isolated User Mode) signed; indicates trying to load a non-trustlet binary into a trustlet'
[Byte] 23 = 'Invalid image hash'
[Byte] 24 = 'Flight root not allowed; indicates trying to run flight-signed code on production OS'
[Byte] 25 = 'Anti-cheat policy violation'
[Byte] 26 = 'Explicitly denied by WDAC policy'
[Byte] 27 = 'The signing chain appears to be tampered/invalid'
[Byte] 28 = 'Resource page hash mismatch'
}
function Get-WDACPolicyRefreshEventFilter {
<#
.SYNOPSIS
Returns a filter to use to get only events that occured since last policy refresh
.DESCRIPTION
Get-WDACPolicyRefreshEventFilter retrieves the latestMicrosoft-Windows-CodeIntegrity/Operational policy refresh event (id 3099) and generates a string to insert in "FilterXPath" filters to only search for events generated after the latest policy refresh
.EXAMPLE
Get-WDACPolicyRefreshEventFilter
Looks for the latest policy refresh event and returns a filter string such as " and TimeCreated[@SystemTime >= '2020-10-05T08:11:22.7969367+02:00']"
#>
[CmdletBinding()]
param()
# Only consider failed audit events that occured after the last CI policy update (event ID 3099)
$LastPolicyUpdateEvent = Get-WinEvent -FilterHashtable @{ LogName = 'Microsoft-Windows-CodeIntegrity/Operational'; Id = 3099 } -MaxEvents 1 -ErrorAction Ignore
# Sometimes this event will not be present - e.g. if the log rolled since the last update.
if ($LastPolicyUpdateEvent) {
$DateTimeAfter = [Xml.XmlConvert]::ToString($LastPolicyUpdateEvent.TimeCreated.ToUniversalTime(), 'O')
" and TimeCreated[@SystemTime >= '$DateTimeAfter']"
} else {
Write-Verbose "No policy update event was present in the event log. Ignoring the -SinceLastPolicyRefresh switch."
''
}
}
function Get-WinEventData {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[Diagnostics.Eventing.Reader.EventLogRecord] $EventRecord
)
process {
$Provider = $Providers[$EventRecord.ProviderName]
if ($Provider.Events.Id -contains $EventRecord.Id) {
$EventTemplateName = $EventRecord.ProviderName, $EventRecord.Id, $EventRecord.Version -join '_'
if (-not $EventTemplates[$EventTemplateName]) {
$EventTemplates[$EventTemplateName] = ($Provider.Events | Where-Object { $_.Id -eq $EventRecord.Id -and $_.Version -eq $EventRecord.Version }).Template
}
[Xml] $XmlTemplate = $EventTemplates[$EventTemplateName]
$EventData = @{}
for ($i = 0; $i -lt $EventRecord.Properties.Count; $i++) {
$Name = $XmlTemplate.template.data.name[$i] -replace ' ', ''
$Value = $EventRecord.Properties[$i].Value
$EventData[$Name] = $Value
}
$EventData
}
else {
$EventRecord.Properties.Value
}
}
}
function Get-WDACApplockerScriptMsiEvent {
<#
.SYNOPSIS
Returns script/MSI event log audit/enforcement events in a more human-readable fashion.
.DESCRIPTION
Get-WDACApplockerScriptMsiEvent retrieves and parses Microsoft-Windows-AppLocker/MSI and Script audit and enforcement events into a format that is more human-readable. This function is designed to facilitate regular code integrity policy baselining. Non-PE code that is subject to code integrity enforcement is logged to the Microsoft-Windows-AppLocker/MSI and Script log.
Author: Matthew Graeber
License: BSD 3-Clause
.PARAMETER SignerInformation
Specifies that correlated signer information should be collected. Note: When there are many CodeIntegrity events present in the event log, collection of signature events can be time consuming.
.PARAMETER ShowAllowedEvents
Specifies that Get-WDACApplockerScriptMsiEvent should also return scripts that were allowed to execute (via 8037 events)
.PARAMETER SinceLastPolicyRefresh
Specifies that events should only be returned since the last time the code integrity policy was refreshed. This option is useful for baselining purposes.
.PARAMETER MaxEvents
Specifies the maximum number of events that Get-WDACCodeIntegrityEvent returns. The default is to return all the events.
.EXAMPLE
Get-WDACApplockerScriptMsiEvent
Return all user-mode code integrity events (audit/enforcement) since the last code intgrity policy refresh.
.EXAMPLE
Get-WDACApplockerScriptMsiEvent -MaxEvents 5
Return the most recent 5 script/MSI code integrity events.
.EXAMPLE
Get-WDACApplockerScriptMsiEvent -SinceLastPolicyRefresh
Return all script/MSI code integrity events since the last code intgrity policy refresh.
.EXAMPLE
Get-WDACApplockerScriptMsiEvent -SignerInformation
#>
[CmdletBinding()]
param (
[Switch]
$SignerInformation,
[Switch]
$ShowAllowedEvents,
[Switch]
$SinceLastPolicyRefresh,
[Int64]
$MaxEvents
)
$MaxEventArg = @{}
# Pass -MaxEvents through to Get-WinEvent
if ($MaxEvents) { $MaxEventArg = @{ MaxEvents = $MaxEvents } }
$PolicyRefreshFilter = ''
if ($SinceLastPolicyRefresh) {
$PolicyRefreshFilter = Get-WDACPolicyRefreshEventFilter -Verbose:$False
}
if ($ShowAllowedEvents) {
$Filter = "*[System[(EventID = 8028 or EventID = 8029 or EventID = 8037)$($PolicyRefreshFilter)]]"
} else {
$Filter = "*[System[(EventID = 8028 or EventID = 8029)$($PolicyRefreshFilter)]]"
}
Write-Verbose "XPath Filter: $Filter"
$EventIdMapping = @{
8028 = 'Audit'
8029 = 'Enforce'
8037 = 'Allowed'
}
# Resolve user names from SIDs
$UserMapping = @{}
Get-CimInstance Win32_Account -Property SID, Caption | ForEach-Object { $UserMapping[$_.SID] = $_.Caption }
Get-WinEvent -LogName 'Microsoft-Windows-AppLocker/MSI and Script' -FilterXPath $Filter @MaxEventArg -ErrorAction Ignore | ForEach-Object {
$ResolvedSigners = $null
$SigningStatus = $null
# 8037 (Allow) events do not populate signer information so don't attempt to retrieve
if ($SignerInformation -and ($_.Id -ne 8037)) {
$SigningStatus = 'Unsigned'
# Retrieve correlated signer info (event ID 8038)
# Note: there may be more than one correlated signer event in the case of the file having multiple signers.
$Signer = Get-WinEvent -LogName 'Microsoft-Windows-AppLocker/MSI and Script' -FilterXPath "*[System[EventID = 8038 and Correlation[@ActivityID = '$($_.ActivityId.Guid)']]]" -MaxEvents 1 -ErrorAction Ignore
# Unsigned scripts will often generate bogus 8038 events. Don't process them
if ($Signer.Properties.Count -gt 0) {
if ($Signer.Properties[0].Value -gt 1) {
$Signer = Get-WinEvent -LogName 'Microsoft-Windows-AppLocker/MSI and Script' -FilterXPath "*[System[EventID = 8038 and Correlation[@ActivityID = '$($_.ActivityId.Guid)']]]" -MaxEvents ($Signer.Properties[0].Value) -ErrorAction Ignore
}
$ResolvedSigners = $Signer | ForEach-Object {
$SignerData = Get-WinEventData -EventRecord $_
if (-not (($SignerData.PublisherNameLength -eq 0) -and ($SignerData.IssuerNameLength -eq 0) -and ($SignerData.PublisherTBSHashSize -eq 0) -and ($SignerData.IssuerTBSHashSize -eq 0))) {
$SigningStatus = 'Signed'
New-Object -TypeName PSObject -Property ([Ordered] @{
SignatureIndex = $SignerData.Signature
PublisherName = $SignerData.PublisherName
IssuerName = $SignerData.IssuerName
PublisherTBSHash = [BitConverter]::ToString($SignerData.PublisherTBSHash).Replace('-','')
IssuerTBSHash = [BitConverter]::ToString($SignerData.IssuerTBSHash).Replace('-','')
})
}
}
}
}
$EventData = Get-WinEventData -EventRecord $_
$UserName = $UserMapping[$_.UserId.Value]
# Revert to the SID if a user name cannot be resolved
if (-not $UserName) { $UserName = $_.UserId }
$ObjectArgs = [Ordered] @{
TimeCreated = $_.TimeCreated
ProcessID = $_.ProcessId
User = $UserName
EventType = $EventIdMapping[$_.Id]
FilePath = $EventData.FilePath
SHA1FileHash = [BitConverter]::ToString($EventData.Sha1Hash).Replace('-','')
SHA256FileHash = [BitConverter]::ToString($EventData.Sha256CatalogHash).Replace('-','')
SHA256AuthenticodeHash = [BitConverter]::ToString($EventData.Sha256Hash).Replace('-','')
UserWriteable = $EventData.UserWriteable
Signed = $SigningStatus
SignerInfo = ($ResolvedSigners | Sort-Object -Property SignatureIndex)
}
New-Object -TypeName PSObject -Property $ObjectArgs
}
}
function Get-WDACCodeIntegrityEvent {
<#
.SYNOPSIS
Returns code integrity event log audit/enforcement events in a more human-readable fashion.
.DESCRIPTION
Get-WDACCodeIntegrityEvent retrieves and parses Microsoft-Windows-CodeIntegrity/Operational PE audit and enforcement events into a format that is more human-readable. This function is designed to facilitate regular code integrity policy baselining.
Author: Matthew Graeber
License: BSD 3-Clause
.PARAMETER User
Specifies that only user-mode events should be returned. If neither -User nor -Kernel is specified, user and kernel events are returned.
.PARAMETER Kernel
Specifies that only kernel-mode events should be returned. If neither -User nor -Kernel is specified, user and kernel events are returned.
.PARAMETER Audit
Specifies that only audit events (event ID 3076) should be returned. If neither -Audit nor -Enforce is specified, audit and enforcement events are returned.
.PARAMETER Enforce
Specifies that only enforcement events (event ID 3077) should be returned. If neither -Audit nor -Enforce is specified, audit and enforcement events are returned.
.PARAMETER SinceLastPolicyRefresh
Specifies that events should only be returned since the last time the code integrity policy was refreshed. This option is useful for baselining purposes.
.PARAMETER SignerInformation
Specifies that correlated signer information should be collected. Note: When there are many CodeIntegrity events present in the event log, collection of signature events can be time consuming.
.PARAMETER CheckWhqlStatus
Specifies that correlated WHQL events should be collected. Supplying this switch will populate the returned FailedWHQL property.
.PARAMETER IgnoreNativeImagesDLLs
Specifies that events where ResolvedFilePath is like "$env:SystemRoot\assembly\NativeImages*.dll" should be skipped. Useful to suppress events caused by auto-generated "NativeImages DLLs"
.PARAMETER IgnoreDenyEvents
Specifies that only events will be returned that are not explicitly blocked by policy. This switch only works when -SignerInformation is also specified. This switch is available to help reduce noise and prevent inadvertantly creating allow rules for explicitly denied executables.
.PARAMETER MaxEvents
Specifies the maximum number of events that Get-WDACCodeIntegrityEvent returns. The default is to return all the events.
.EXAMPLE
Get-WDACCodeIntegrityEvent -SinceLastPolicyRefresh
Return all code integrity events (user/kernel/audit/enforcement) since the last code intgrity policy refresh.
.EXAMPLE
Get-WDACCodeIntegrityEvent -User -SinceLastPolicyRefresh
Return all user-mode code integrity events (audit/enforcement) since the last code intgrity policy refresh.
.EXAMPLE
Get-WDACCodeIntegrityEvent -Kernel -MaxEvents 5
Return the most recent 5 kernel mode code integrity events.
.EXAMPLE
Get-WDACCodeIntegrityEvent -Kernel -Enforce
Return all kernel mode enforcement events.
#>
[CmdletBinding(DefaultParameterSetName = 'NoSignerCheck')]
param (
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$User,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$Kernel,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$Audit,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$Enforce,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$SinceLastPolicyRefresh,
[Parameter(Mandatory, ParameterSetName = 'SignerCheck')]
[Switch]
$SignerInformation,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$CheckWhqlStatus,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$IgnoreNativeImagesDLLs,
[Parameter(ParameterSetName = 'SignerCheck')]
[Switch]
$IgnoreDenyEvents,
[Parameter(ParameterSetName = 'NoSignerCheck')]
[Parameter(ParameterSetName = 'SignerCheck')]
[Int64]
$MaxEvents
)
# If neither -User nor -Kernel are supplied, do not filter based on signing scenario
# If -User and -Kernel are supplied, do not filter based on signing scenario
# Only filter in a mutually exclusive scenario.
$ScenarioFilter = ''
if ($User -and !$Kernel) {
# 1 == A user-mode rule triggered
$ScenarioFilter = " and EventData[Data[@Name='SI Signing Scenario'] = 1]"
} elseif ($Kernel -and !$User) {
# 2 == A kernel-mode rule triggered
$ScenarioFilter = " and EventData[Data[@Name='SI Signing Scenario'] = 0]"
}
# If neither -Audit nor -Enforce are supplied, do not filter based on event ID
# If -Audit and -Enforce are supplied, do not filter based on event ID
# Only filter in a mutually exclusive scenario.
$ModeFilter = '(EventID = 3076 or EventID = 3077)'
if ($Audit -and !$Enforce) {
# Event ID 3076 == an audit event
$ModeFilter = "EventID = 3076"
} elseif ($Enforce -and !$Audit) {
# Event ID 3077 == an enforcement event
$ModeFilter = "EventID = 3077"
}
$PolicyRefreshFilter = ''
if ($SinceLastPolicyRefresh) {
$PolicyRefreshFilter = Get-WDACPolicyRefreshEventFilter -Verbose:$False
}
$Filter = "*[System[$($ModeFilter)$($PolicyRefreshFilter)]$ScenarioFilter]"
Write-Verbose "XPath Filter: $Filter"
$EventIdMapping = @{
3076 = 'Audit'
3077 = 'Enforce'
}
$SigningScenarioMapping = @{
[UInt32] 0 = 'Driver'
[UInt32] 1 = 'UserMode'
}
$MaxEventArg = @{}
# Pass -MaxEvents through to Get-WinEvent
if ($MaxEvents) { $MaxEventArg = @{ MaxEvents = $MaxEvents } }
Get-WinEvent -LogName 'Microsoft-Windows-CodeIntegrity/Operational' -FilterXPath $Filter @MaxEventArg -ErrorAction Ignore | ForEach-Object {
$EventData = Get-WinEventData -EventRecord $_
$WHQLFailed = $null
if ($CheckWhqlStatus) {
$WHQLFailed = $False
# A correlated 3082 event indicates that WHQL verification failed
$WHQLEvent = Get-WinEvent -LogName 'Microsoft-Windows-CodeIntegrity/Operational' -FilterXPath "*[System[EventID = 3082 and Correlation[@ActivityID = '$($_.ActivityId.Guid)']]]" -MaxEvents 1 -ErrorAction Ignore
if ($WHQLEvent) { $WHQLFailed = $True }
}
$ResolvedSigners = $null
$ExplicitlyDeniedSigner = $False
if ($SignerInformation) {
# Retrieve correlated signer info (event ID 3089)
# Note: there may be more than one correlated signer event in the case of the file having multiple signers.
$Signer = Get-WinEvent -LogName 'Microsoft-Windows-CodeIntegrity/Operational' -FilterXPath "*[System[EventID = 3089 and Correlation[@ActivityID = '$($_.ActivityId.Guid)']]]" -MaxEvents 1 -ErrorAction Ignore
if ($Signer.Properties[0].Value -gt 1) {
$Signer = Get-WinEvent -LogName 'Microsoft-Windows-CodeIntegrity/Operational' -FilterXPath "*[System[EventID = 3089 and Correlation[@ActivityID = '$($_.ActivityId.Guid)']]]" -MaxEvents ($Signer.Properties[0].Value) -ErrorAction Ignore
}
$ResolvedSigners = $Signer | ForEach-Object {
$SignerData = Get-WinEventData -EventRecord $_
$SignatureType = $SignatureTypeMapping[$SignerData.SignatureType]
$VerificationError = $VerificationErrorMapping[$SignerData.VerificationError]
if ($IgnoreDenyEvents -and ($VerificationError -eq 'Explicitly denied by WDAC policy')) { $ExplicitlyDeniedSigner = $True }
New-Object -TypeName PSObject -Property ([Ordered] @{
SignatureIndex = $SignerData.Signature
Hash = [BitConverter]::ToString($SignerData.Hash).Replace('-','')
PageHash = $SignerData.PageHash
SignatureType = $SignatureType
ValidatedSigningLevel = $SigningLevelMapping[$SignerData.ValidatedSigningLevel]
VerificationError = $VerificationError
Flags = $SignerData.Flags
PolicyBits = $SignerData.PolicyBits
NotValidBefore = $SignerData.NotValidBefore
NotValidAfter = $SignerData.NotValidAfter
PublisherName = $SignerData.PublisherName
IssuerName = $SignerData.IssuerName
PublisherTBSHash = [BitConverter]::ToString($SignerData.PublisherTBSHash).Replace('-','')
IssuerTBSHash = [BitConverter]::ToString($SignerData.IssuerTBSHash).Replace('-','')
})
}
}
if (-not $ExplicitlyDeniedSigner) {
$UnresolvedFilePath = $EventData.FileName
$ResolvedFilePath = $null
# Make a best effort to resolve the device path to a normal path.
if ($UnresolvedFilePath -match '(?<Prefix>^\\Device\\HarddiskVolume(?<VolumeNumber>\d)\\)') {
$ResolvedFilePath = $UnresolvedFilePath.Replace($Matches['Prefix'], "$($PartitionMapping[$Matches['VolumeNumber']]):\")
} elseif ($UnresolvedFilePath.ToLower().StartsWith('system32')) {
$ResolvedFilePath = "$($Env:windir)\System32$($UnresolvedFilePath.Substring(8))"
}
# If all else fails regarding path resolution, show a warning.
if ($ResolvedFilePath -and !(Test-Path -Path $ResolvedFilePath)) {
Write-Warning "The following file path was either not resolved properly or was not present on disk: $ResolvedFilePath"
}
$ResolvedProcessName = $null
$ProcessName = $EventData.ProcessName
# Make a best effort to resolve the process path to a normal path.
if ($ProcessName -match '(?<Prefix>^\\Device\\HarddiskVolume(?<VolumeNumber>\d)\\)') {
$ResolvedProcessName = $ProcessName.Replace($Matches['Prefix'], "$($PartitionMapping[$Matches['VolumeNumber']]):\")
} elseif ($ProcessName.ToLower().StartsWith('system32')) {
$ResolvedProcessName = "$($Env:windir)\System32$($ProcessName.Substring(8))"
}
# If all else fails regarding path resolution, show a warning.
if ($ResolvedProcessName -and !(Test-Path -Path $ResolvedProcessName)) {
Write-Warning "The following process file path was either not resolved properly or was not present on disk: $ResolvedProcessName"
}
$UserName = $UserMapping[$_.UserId.Value]
# Revert to the SID if a user name cannot be resolved
if (-not $UserName) { $UserName = $_.UserId }
$CIEventProperties = [Ordered] @{
TimeCreated = $_.TimeCreated
ProcessID = $_.ProcessId
User = $UserName
EventType = $EventIdMapping[$_.Id]
SigningScenario = $SigningScenarioMapping[$EventData.SISigningScenario]
UnresolvedFilePath = $UnresolvedFilePath
FilePath = $ResolvedFilePath
SHA1FileHash = [BitConverter]::ToString($EventData.SHA1FlatHash).Replace('-','')
SHA1AuthenticodeHash = [BitConverter]::ToString($EventData.SHA1Hash).Replace('-','')
SHA256FileHash = [BitConverter]::ToString($EventData.SHA256FlatHash).Replace('-','')
SHA256AuthenticodeHash = [BitConverter]::ToString($EventData.SHA256Hash).Replace('-','')
UnresolvedProcessName = $EventData.ProcessName
ProcessName = $ResolvedProcessName
RequestedSigningLevel = $SigningLevelMapping[$EventData.RequestedSigningLevel]
ValidatedSigningLevel = $SigningLevelMapping[$EventData.ValidatedSigningLevel]
PolicyName = $EventData.PolicyName
PolicyID = $EventData.PolicyId
PolicyGUID = $(if ($EventData.PolicyGUID) { $EventData.PolicyGUID.Guid.ToUpper() } else { $null })
PolicyHash = [BitConverter]::ToString($EventData.PolicyHash).Replace('-','')
OriginalFileName = $EventData.OriginalFileName
InternalName = $EventData.InternalName
FileDescription = $EventData.FileDescription
ProductName = $EventData.ProductName
FileVersion = $EventData.FileVersion
PackageFamilyName = $EventData.PackageFamilyName
UserWriteable = $EventData.UserWriteable
FailedWHQL = $WHQLFailed
SignerInfo = ($ResolvedSigners | Sort-Object -Property SignatureIndex)
}
if (-not $IgnoreNativeImagesDLLs -or ($IgnoreNativeImagesDLLs -and $CIEventProperties.ResolvedFilePath -notlike "$env:SystemRoot\assembly\NativeImages*.dll")) {
New-Object -TypeName PSObject -Property $CIEventProperties
}
}
}
}
function Copy-WDACEventFile {
<#
.SYNOPSIS
Copies files returned by the Get-WDACApplockerScriptMsiEvent or Get-WDACCodeIntegrityEvent functions to a destination directory.
.DESCRIPTION
Copy-WDACEventFile copies files returned by the Get-WDACApplockerScriptMsiEvent or Get-WDACCodeIntegrityEvent functions to a destination directory. When developing targeted code integrity policies, it is ideal to consolidate all the relevant files in a dedicated directory that are not intermingled with files not to be added per policy. Copy-WDACEventFile copies files in a targeted fashion such that Get-SystemDriver will scan a specific path containing only the relevant file.
Author: Matthew Graeber
License: BSD 3-Clause
.PARAMETER FilePath
Specifies the filepath of the executable or script to be copied.
.PARAMETER Destination
Specifies the destination directory where all files will be copied.
.EXAMPLE
Get-WDACCodeIntegrityEvent | Copy-WDACEventFile -Destination .\FilesToAllow
.EXAMPLE
Get-WDACApplockerScriptMsiEvent | Copy-WDACEventFile -Destination .\FilesToAllow
.INPUTS
PSObject
Copy-WDACEventFile accepts the output of Get-WDACApplockerScriptMsiEvent and Get-WDACCodeIntegrityEvent.
.OUTPUTS
System.IO.FileInfo
Copy-WDACEventFile outputs a FileInfo object representing the new file that was copied to its destination.
#>
[CmdletBinding()]
param (
[Parameter(Mandatory, Position = 1)]
[String]
[ValidateScript({ Test-Path -Path $_ -PathType Container })]
$Destination,
[Parameter(Mandatory, ValueFromPipelineByPropertyName, Position = 0)]
[String[]]
[ValidateNotNullOrEmpty()]
$FilePath
)
BEGIN {
$ResolvedDestination = Resolve-Path $Destination
}
PROCESS {
foreach ($Path in $FilePath) {
$FileName = Split-Path -Path $Path -Leaf
$ChildDestinationDirectory = (Split-Path -Path $Path -Parent).Substring(2)
$DestinationDirectory = Join-Path -Path $ResolvedDestination -ChildPath $ChildDestinationDirectory
$DestinationFilePath = Join-Path -Path $DestinationDirectory -ChildPath $FileName
# If the destination directory doesn't exist, create it
if (-not (Test-Path -Path $DestinationDirectory -PathType Container)) {
$null = mkdir -Path $DestinationDirectory -Force
}
Copy-Item -Path $Path -Destination $DestinationFilePath -PassThru
}
}
}