-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecurity.json
More file actions
9259 lines (9259 loc) · 347 KB
/
Copy pathsecurity.json
File metadata and controls
9259 lines (9259 loc) · 347 KB
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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"dataset": {
"name": "EID Quick Reference - Security",
"version": "1.16.0",
"generatedAt": "2026-05-10T00:00:00Z",
"id": "https://raw.githubusercontent.com/zerber0s/windows-eid-data/main/security.json",
"schema": "https://raw.githubusercontent.com/zerber0s/windows-eid-data/main/schema.json",
"license": {
"name": "Creative Commons Attribution 4.0 International",
"spdx": "CC-BY-4.0",
"notice": "Event descriptions are paraphrased summaries written for this dataset. Source links point to authoritative references."
},
"sources": [
{
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/",
"type": "primary"
}
]
},
"entries": [
{
"id": 1102,
"log": "Security",
"provider": "Microsoft-Windows-Eventlog",
"channel": "Security",
"level": "Information",
"title": "The audit log was cleared",
"summary": "Security log cleared.",
"details": "Generated when the Security event log is cleared. High severity because clearing may indicate evidence destruction.",
"category": "Log Tampering",
"tags": [
"log-cleared",
"defense-evasion"
],
"relatedEventIds": [
{
"id": 104,
"log": "System"
}
],
"mitreAttack": [
{
"techniqueId": "T1685.005",
"techniqueName": "Disable or Modify Tools: Clear Windows Event Logs",
"tactics": [
{
"tacticId": "TA0112",
"tacticName": "Defense Impairment"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"SubjectUserName identifies the account that cleared the log — flag any non-IT account",
"Correlate with System EID 104 — simultaneous clearing of both Security and System logs is a strong evidence destruction indicator",
"Review the timestamp and check for any log entries from just before the clear for an attacker timeline"
],
"commonFalsePositives": [
"IT administrators clearing logs for storage management (rare, should be in change records)"
]
},
"keyFields": [
{
"name": "SubjectUserName",
"xpath": "EventData/Data[@Name='SubjectUserName']",
"description": "Account that cleared the log"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-1102"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Security Log Cleared",
"rule": "SecurityEvent\n| where EventID == 1102\n| project TimeGenerated, Computer, SubjectUserName, SubjectDomainName\n| order by TimeGenerated desc",
"notes": "Every occurrence is high priority — there is no legitimate automated reason to clear the Security log outside of approved change windows."
},
{
"platform": "Sigma",
"title": "Security Log Cleared",
"rule": "title: Security Log Cleared\nstatus: stable\nlogsource:\n product: windows\n service: security\ndetection:\n selection:\n EventID: 1102\n condition: selection\nfalsepositives:\n - Legitimate administrator log management\nlevel: high"
}
],
"volumeIndicator": "rare",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-05-10"
},
{
"id": 4616,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "The system time was changed",
"summary": "System clock was modified.",
"details": "Generated when the system clock is changed. Attackers may modify the system clock to manipulate log timestamps, evade time-based detection rules, or shift the investigative timeline.",
"category": "Defense Evasion",
"tags": [
"time-change",
"defense-evasion",
"log-tampering"
],
"relatedEventIds": [
{
"id": 4688,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1070.006",
"techniqueName": "Indicator Removal: Timestomp",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Compare PreviousTime and NewTime — large backward shifts immediately before malicious activity suggest deliberate timestamp manipulation",
"SubjectUserName identifies who changed the time — non-admin accounts or unexpected accounts warrant investigation",
"Correlate with Security EID 4688 around the same timestamp to identify what process triggered the time change"
],
"commonFalsePositives": [
"NTP synchronization events, especially on systems with clock drift after extended downtime",
"VM host/guest time synchronization on virtual machines"
]
},
"keyFields": [
{
"name": "SubjectUserName",
"xpath": "EventData/Data[@Name='SubjectUserName']",
"description": "Account that changed the time"
},
{
"name": "PreviousTime",
"xpath": "EventData/Data[@Name='PreviousTime']",
"description": "System time before the change"
},
{
"name": "NewTime",
"xpath": "EventData/Data[@Name='NewTime']",
"description": "System time after the change"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4616"
},
"volumeIndicator": "low",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-05-10"
},
{
"id": 4624,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "An account was successfully logged on",
"summary": "Successful logon session creation.",
"details": "Generated when a logon session is successfully created. Covers interactive, network, service, batch, and other logon types.",
"category": "Logon/Authentication",
"tags": [
"logon",
"authentication"
],
"relatedEventIds": [
{
"id": 4625,
"log": "Security"
},
{
"id": 4634,
"log": "Security"
},
{
"id": 4672,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1078",
"techniqueName": "Valid Accounts",
"tactics": [
{
"tacticId": "TA0001",
"tacticName": "Initial Access"
},
{
"tacticId": "TA0003",
"tacticName": "Persistence"
},
{
"tacticId": "TA0004",
"tacticName": "Privilege Escalation"
},
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"LogonType is the primary pivot: 2=interactive (console), 3=network (SMB/WMI), 10=RemoteInteractive (RDP), 4=batch, 5=service",
"IpAddress/WorkstationName identifies the source — flag logons from unexpected hosts or external IPs",
"TargetUserName combined with LogonType 3 from an admin account outside business hours is a common lateral movement pattern",
"Correlate LogonID with EID 4634/4647 to track session duration"
],
"commonFalsePositives": [
"Normal user and service account logons",
"High-frequency network logons (LogonType 3) from backup, monitoring, or endpoint management systems"
]
},
"keyFields": [
{
"name": "LogonType",
"xpath": "EventData/Data[@Name='LogonType']",
"description": "Type of logon: 2=interactive, 3=network, 4=batch, 5=service, 10=RemoteInteractive (RDP)"
},
{
"name": "TargetUserName",
"xpath": "EventData/Data[@Name='TargetUserName']",
"description": "Account that logged on"
},
{
"name": "IpAddress",
"xpath": "EventData/Data[@Name='IpAddress']",
"description": "Source IP address of the logon"
},
{
"name": "WorkstationName",
"xpath": "EventData/Data[@Name='WorkstationName']",
"description": "Source workstation name"
},
{
"name": "LogonId",
"xpath": "EventData/Data[@Name='TargetLogonId']",
"description": "Logon session identifier for correlating with logoff events"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4624"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Suspicious Network Logon Outside Business Hours",
"rule": "SecurityEvent\n| where EventID == 4624\n| where LogonType == 3\n| where AccountType != \"Machine\"\n| where TargetUserName !endswith \"$\"\n| where hourofday(TimeGenerated) !between (7 .. 18)\n| project TimeGenerated, Computer, TargetUserName, TargetDomainName, IpAddress, WorkstationName, LogonType\n| order by TimeGenerated desc",
"notes": "Tune business hours window and exclude known service accounts and backup systems to reduce volume."
},
{
"platform": "KQL",
"title": "RDP Logon (LogonType 10) from External IP",
"rule": "SecurityEvent\n| where EventID == 4624\n| where LogonType == 10\n| where IpAddress !startswith \"10.\" and IpAddress !startswith \"192.168.\" and IpAddress !startswith \"172.\"\n| where IpAddress != \"-\" and IpAddress != \"127.0.0.1\"\n| project TimeGenerated, Computer, TargetUserName, TargetDomainName, IpAddress, LogonType\n| order by TimeGenerated desc"
},
{
"platform": "Sigma",
"title": "Logon with Explicit Credentials from Unusual Source",
"rule": "title: Suspicious Interactive Logon\nstatus: experimental\nlogsource:\n product: windows\n service: security\ndetection:\n selection:\n EventID: 4624\n LogonType:\n - 2\n - 10\n condition: selection\nfalsepositives:\n - Normal user desktop logons\nlevel: informational"
}
],
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-05-10"
},
{
"id": 4625,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditFailure",
"title": "An account failed to log on",
"summary": "Failed logon attempt recorded.",
"details": "Generated when a logon attempt fails. Records the failure reason via Status and SubStatus codes.",
"category": "Logon/Authentication",
"tags": [
"failure",
"bruteforce"
],
"relatedEventIds": [
{
"id": 4624,
"log": "Security"
},
{
"id": 4740,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1110",
"techniqueName": "Brute Force",
"tactics": [
{
"tacticId": "TA0006",
"tacticName": "Credential Access"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"SubStatus 0xC000006A (wrong password) vs 0xC0000064 (bad username) distinguishes valid-user brute force from username enumeration",
"Many failures against many accounts from one source = password spray; many failures against one account = brute force",
"IpAddress/WorkstationName identifies the source — external IPs or unfamiliar workstations are high priority",
"Correlate with EID 4740 to identify accounts that were locked out as a result"
],
"commonFalsePositives": [
"Misconfigured service accounts using stale credentials",
"Users failing to log on after a password change before updating saved credentials"
]
},
"keyFields": [
{
"name": "Status",
"xpath": "EventData/Data[@Name='Status']",
"description": "NTSTATUS code for the failure category"
},
{
"name": "SubStatus",
"xpath": "EventData/Data[@Name='SubStatus']",
"description": "NTSTATUS code for the specific failure reason (e.g., 0xC000006A = wrong password, 0xC0000064 = bad username)"
},
{
"name": "TargetUserName",
"xpath": "EventData/Data[@Name='TargetUserName']",
"description": "Account targeted by the failed logon attempt"
},
{
"name": "IpAddress",
"xpath": "EventData/Data[@Name='IpAddress']",
"description": "Source IP address of the failed logon"
},
{
"name": "WorkstationName",
"xpath": "EventData/Data[@Name='WorkstationName']",
"description": "Source workstation name"
},
{
"name": "LogonType",
"xpath": "EventData/Data[@Name='LogonType']",
"description": "Type of logon attempted"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4625"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Password Spray Detection — Many Accounts from One Source",
"rule": "SecurityEvent\n| where EventID == 4625\n| where LogonType in (3, 10)\n| summarize FailureCount = count(), DistinctAccounts = dcount(TargetUserName) by IpAddress, bin(TimeGenerated, 10m)\n| where DistinctAccounts >= 5 and FailureCount >= 10\n| project TimeGenerated, IpAddress, FailureCount, DistinctAccounts\n| order by FailureCount desc",
"notes": "Thresholds should be tuned per environment. Set DistinctAccounts lower (e.g., 3) in smaller environments."
},
{
"platform": "KQL",
"title": "Brute Force Detection — Many Failures Against One Account",
"rule": "SecurityEvent\n| where EventID == 4625\n| summarize FailureCount = count() by TargetUserName, IpAddress, bin(TimeGenerated, 5m)\n| where FailureCount >= 20\n| project TimeGenerated, TargetUserName, IpAddress, FailureCount\n| order by FailureCount desc"
},
{
"platform": "Sigma",
"title": "Multiple Failed Logon Attempts",
"rule": "title: Multiple Failed Logon Attempts (Brute Force)\nstatus: stable\nlogsource:\n product: windows\n service: security\ndetection:\n selection:\n EventID: 4625\n condition: selection | count() by IpAddress > 20\n timeframe: 5m\nfalsepositives:\n - Misconfigured service accounts with stale credentials\nlevel: medium"
}
],
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-04-05"
},
{
"id": 4634,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "An account was logged off",
"summary": "Logon session terminated.",
"details": "Generated when a logon session ends and is destroyed. EID 4647 records user-initiated interactive/RDP logoffs; EID 4634 marks the actual session termination.",
"category": "Logon/Authentication",
"tags": [
"logoff",
"authentication"
],
"relatedEventIds": [
{
"id": 4624,
"log": "Security"
},
{
"id": 4647,
"log": "Security"
}
],
"notesGuidance": {
"investigationPivots": [
"LogonID links this event back to EID 4624 — use it to calculate full session duration",
"Long-lived sessions (hours to days) for network logon types may indicate persistent attacker access or a long-running tool"
],
"commonFalsePositives": [
"Normal session termination for any logon type"
]
},
"keyFields": [
{
"name": "TargetLogonId",
"xpath": "EventData/Data[@Name='TargetLogonId']",
"description": "Logon session identifier linking back to EID 4624"
},
{
"name": "LogonType",
"xpath": "EventData/Data[@Name='LogonType']",
"description": "Type of logon session that ended"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4634"
},
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-03-29"
},
{
"id": 4647,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "User initiated logoff",
"summary": "User-initiated interactive logoff recorded.",
"details": "Generated when a user initiates a logoff from an interactive or RDP session. Unlike EID 4634 which marks session termination, EID 4647 records the user's intent to log off.",
"category": "Logon/Authentication",
"tags": [
"logoff",
"authentication"
],
"relatedEventIds": [
{
"id": 4634,
"log": "Security"
},
{
"id": 4624,
"log": "Security"
}
],
"notesGuidance": {
"investigationPivots": [
"Correlate LogonID with EID 4624 to identify the originating logon and calculate session duration",
"EID 4647 without a subsequent EID 4634 may indicate the session terminated abnormally before the logon record was closed"
],
"commonFalsePositives": [
"Normal user-initiated logoff from interactive or RDP sessions"
]
},
"keyFields": [
{
"name": "TargetUserName",
"xpath": "EventData/Data[@Name='TargetUserName']",
"description": "Account that initiated the logoff"
},
{
"name": "TargetLogonId",
"xpath": "EventData/Data[@Name='TargetLogonId']",
"description": "Logon session identifier linking to EID 4624"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4647"
},
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-03-29"
},
{
"id": 4648,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "A logon was attempted using explicit credentials",
"summary": "Explicit credential logon attempt recorded.",
"details": "Generated when a process uses explicit credentials (such as runas or scheduled task authentication) rather than the session's default token.",
"category": "Logon/Authentication",
"tags": [
"logon",
"explicit-credentials",
"runas"
],
"relatedEventIds": [
{
"id": 4624,
"log": "Security"
},
{
"id": 4769,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1550.002",
"techniqueName": "Use Alternate Authentication Material: Pass the Hash",
"tactics": [
{
"tacticId": "TA0008",
"tacticName": "Lateral Movement"
}
]
},
{
"techniqueId": "T1078",
"techniqueName": "Valid Accounts",
"tactics": [
{
"tacticId": "TA0001",
"tacticName": "Initial Access"
},
{
"tacticId": "TA0003",
"tacticName": "Persistence"
},
{
"tacticId": "TA0004",
"tacticName": "Privilege Escalation"
},
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"SubjectUserName vs TargetUserName mismatch indicates credential substitution — flag when TargetUserName is a more privileged account",
"TargetServerName identifies the remote target — flag connections to domain controllers, servers, or internal infrastructure",
"ProcessName of unexpected executables (e.g., cmd.exe, wmic.exe, PowerShell) using explicit credentials is a lateral movement indicator"
],
"commonFalsePositives": [
"Administrators using runas to run tools under a different account",
"Scheduled tasks configured with explicit credentials triggering at execution time"
]
},
"keyFields": [
{
"name": "SubjectUserName",
"xpath": "EventData/Data[@Name='SubjectUserName']",
"description": "Account whose session initiated the explicit credential logon"
},
{
"name": "TargetUserName",
"xpath": "EventData/Data[@Name='TargetUserName']",
"description": "Account whose credentials were explicitly supplied"
},
{
"name": "TargetServerName",
"xpath": "EventData/Data[@Name='TargetServerName']",
"description": "Remote server targeted by the explicit credential logon"
},
{
"name": "ProcessName",
"xpath": "EventData/Data[@Name='ProcessName']",
"description": "Process that used the explicit credentials"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4648"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Explicit Credential Use by Non-Admin Process",
"rule": "SecurityEvent\n| where EventID == 4648\n| where SubjectUserName != TargetUserName\n| where ProcessName !in (\"C:\\\\Windows\\\\System32\\\\lsass.exe\", \"C:\\\\Windows\\\\System32\\\\svchost.exe\", \"C:\\\\Windows\\\\System32\\\\services.exe\")\n| project TimeGenerated, Computer, SubjectUserName, TargetUserName, TargetServerName, ProcessName\n| order by TimeGenerated desc",
"notes": "Filter known scheduled task and service manager processes. Focus on ProcessName values outside System32 or unusual locations."
},
{
"platform": "Sigma",
"title": "Explicit Credential Logon",
"rule": "title: Explicit Credential Logon Attempt\nstatus: stable\nlogsource:\n product: windows\n service: security\ndetection:\n selection:\n EventID: 4648\n filter:\n SubjectUserName|endswith: '$'\n condition: selection and not filter\nfalsepositives:\n - Administrators using runas\n - Scheduled tasks using explicit credentials\nlevel: medium"
}
],
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-05-10"
},
{
"id": 4649,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditFailure",
"title": "A Kerberos service ticket was requested with a replayed authentication",
"summary": "Kerberos replay attack detected.",
"details": "Generated when the Kerberos Key Distribution Center detects a replayed authenticator -- an authenticator previously used in a valid ticket request being resubmitted. This event fires when replay detection succeeds within the timestamp-based window (default 5 minutes). The presence of this event indicates either an active replay attack or a significant time skew issue triggering false replay detection.",
"category": "Kerberos/Authentication",
"tags": [
"kerberos",
"replay-attack",
"credential-access"
],
"relatedEventIds": [
{
"id": 4768,
"log": "Security"
},
{
"id": 4769,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1558",
"techniqueName": "Steal or Forge Kerberos Tickets",
"tactics": [
{
"tacticId": "TA0006",
"tacticName": "Credential Access"
}
]
}
],
"prerequisites": [
{
"type": "policy",
"description": "Audit Account Logon > Audit Kerberos Service Ticket Operations must be enabled (Success and Failure)"
}
],
"notesGuidance": {
"investigationPivots": [
"ClientAddress identifies the source of the replay — pivot to this host for further investigation",
"TargetUserName reveals which account's ticket was replayed — correlate with recent 4768/4769 requests from the same account",
"A cluster of this event from different sources targeting the same account indicates a credential relay or ticket sharing attack"
],
"commonFalsePositives": [
"Severe clock skew (more than 5 minutes) between client and KDC causing authenticators to appear replayed",
"Network packet retransmissions in lossy environments can sometimes trigger replay detection"
]
},
"keyFields": [
{
"name": "TargetUserName",
"xpath": "EventData/Data[@Name='TargetUserName']",
"description": "Account whose ticket was replayed"
},
{
"name": "ClientAddress",
"xpath": "EventData/Data[@Name='ClientAddress']",
"description": "Source address of the replay attempt"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4649"
},
"volumeIndicator": "low",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-04-04"
},
{
"id": 4656,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "A handle to an object was requested",
"summary": "Object handle request recorded.",
"details": "Generated when access to a file, registry key, or kernel object is requested. Records the requested access rights but not whether the operation was actually performed. Requires SACL configuration on monitored objects.",
"category": "Object Access",
"tags": [
"file-access",
"registry-access",
"object-access"
],
"relatedEventIds": [
{
"id": 4663,
"log": "Security"
},
{
"id": 4670,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1083",
"techniqueName": "File and Directory Discovery",
"tactics": [
{
"tacticId": "TA0007",
"tacticName": "Discovery"
}
]
},
{
"techniqueId": "T1112",
"techniqueName": "Modify Registry",
"tactics": [
{
"tacticId": "TA0112",
"tacticName": "Defense Impairment"
},
{
"tacticId": "TA0003",
"tacticName": "Persistence"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"AccessMask field records what access was requested — flag WriteData, DELETE, or WRITE_DAC on sensitive objects",
"ObjectName identifies the file or registry key — correlate against a list of sensitive paths (SAM, NTDS, LSASS, credential stores)",
"Correlate with EID 4663 to confirm whether the handle was used for actual access"
],
"commonFalsePositives": [
"Normal file and registry access by legitimate applications — high volume on systems without targeted SACLs"
]
},
"keyFields": [
{
"name": "ObjectName",
"xpath": "EventData/Data[@Name='ObjectName']",
"description": "Full path of the file or registry key for which access was requested"
},
{
"name": "AccessMask",
"xpath": "EventData/Data[@Name='AccessMask']",
"description": "Bitmask of requested access rights (e.g., WriteData, DELETE, WRITE_DAC)"
},
{
"name": "SubjectUserName",
"xpath": "EventData/Data[@Name='SubjectUserName']",
"description": "Account that requested the handle"
},
{
"name": "ProcessName",
"xpath": "EventData/Data[@Name='ProcessName']",
"description": "Process that requested the handle"
},
{
"name": "HandleId",
"xpath": "EventData/Data[@Name='HandleId']",
"description": "Handle identifier for correlating with EID 4663 and EID 4658"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4656"
},
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-05-10"
},
{
"id": 4657,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "A registry value was modified",
"summary": "Registry value was created or changed.",
"details": "Generated when a registry value is created, modified, or deleted, provided object access auditing is enabled for the specific registry key. High-value registry paths include Run/RunOnce keys (persistence), service ImagePath values (service hijacking), Defender and security tool configuration keys (tamper), and application compatibility shims (persistence).",
"category": "Persistence/Defense Evasion",
"tags": [
"registry",
"persistence",
"defense-evasion"
],
"relatedEventIds": [
{
"id": 4688,
"log": "Security"
},
{
"id": 4663,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1112",
"techniqueName": "Modify Registry",
"tactics": [
{
"tacticId": "TA0112",
"tacticName": "Defense Impairment"
},
{
"tacticId": "TA0003",
"tacticName": "Persistence"
}
]
},
{
"techniqueId": "T1543.003",
"techniqueName": "Create or Modify System Process: Windows Service",
"tactics": [
{
"tacticId": "TA0003",
"tacticName": "Persistence"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"ObjectName is the key pivot — filter on Run/RunOnce, service ImagePath, Defender exclusion paths, and security tool configuration keys",
"OldValue vs NewValue reveals what changed — value deletions (OldValue present, NewValue absent) can also indicate cleanup",
"Correlate with Security EID 4688 to identify the process that made the change"
],
"commonFalsePositives": [
"High-volume legitimate registry activity — this event requires targeted filtering on sensitive key paths to be actionable",
"Software installations and updates modifying their own registry keys"
]
},
"keyFields": [
{
"name": "SubjectUserName",
"xpath": "EventData/Data[@Name='SubjectUserName']",
"description": "Account that modified the registry value"
},
{
"name": "ObjectName",
"xpath": "EventData/Data[@Name='ObjectName']",
"description": "Registry key path containing the modified value"
},
{
"name": "ObjectValueName",
"xpath": "EventData/Data[@Name='ObjectValueName']",
"description": "Name of the registry value that was changed"
},
{
"name": "OldValue",
"xpath": "EventData/Data[@Name='OldValue']",
"description": "Previous value data before the change"
},
{
"name": "NewValue",
"xpath": "EventData/Data[@Name='NewValue']",
"description": "New value data after the change"
}
],
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4657"
},
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"lastReviewed": "2026-05-10"
},
{
"id": 4658,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "A handle to an object was closed",
"summary": "An open object handle was closed, completing the handle lifecycle.",
"details": "Generated when a handle opened with auditing (EID 4656) is closed. Completes the 4656-4663-4658 lifecycle chain. Without EID 4658, the access time window cannot be determined.",
"category": "Object Access",
"tags": [
"handle",
"object-access",
"lsass",
"credential-access"
],
"relatedEventIds": [
{
"id": 4656,
"log": "Security"
},
{
"id": 4663,
"log": "Security"
},
{
"id": 4690,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1003.001",
"techniqueName": "OS Credential Dumping: LSASS Memory",
"tactics": [
{
"tacticId": "TA0006",
"tacticName": "Credential Access"
}
]
}
],
"prerequisites": [
{
"type": "policy",
"description": "Audit Handle Manipulation must be enabled under Advanced Audit Policy > Object Access. The target object must also have a SACL configured to audit handle open/close operations."
}
],
"notesGuidance": {
"investigationPivots": [
"Link HandleId to EID 4656 to determine which object the handle was opened on — LSASS, SAM database, or NTDS are highest priority",
"Calculate the time between EID 4656 (open) and EID 4658 (close) to determine how long access was held",
"Presence of EID 4663 between the matching 4656 and 4658 events confirms that actual access (read/write) occurred during the open window"
],
"commonFalsePositives": [
"Every legitimate handle close on objects with SACL auditing configured — extremely high volume in environments with broad object access auditing"
]
},
"source": {
"name": "Microsoft Learn",
"url": "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/auditing/event-4658"
},
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows Vista / Server 2008"
},
"keyFields": [
{
"name": "HandleId",
"xpath": "EventData/Data[@Name='HandleId']",
"description": "Handle identifier — correlate with EID 4656 HandleId to identify which object was opened and then closed"
},
{
"name": "SubjectUserName",
"xpath": "EventData/Data[@Name='SubjectUserName']",
"description": "Account that closed the handle"
},
{
"name": "ProcessId",
"xpath": "EventData/Data[@Name='ProcessId']",
"description": "Process that held and released the handle; cross-reference with EID 4688 ProcessId for process identification"
}
],
"lastReviewed": "2026-04-11"
},
{
"id": 4660,
"log": "Security",
"provider": "Microsoft-Windows-Security-Auditing",
"channel": "Security",
"level": "AuditSuccess",
"title": "An object was deleted",
"summary": "An audited file, registry key, or other object was deleted.",
"details": "Generated when an auditable object is deleted, provided the object has a SACL configured for the DELETE operation. EID 4660 does not include the deleted object path; HandleId must be correlated with the matching EID 4656 to retrieve ObjectName.",
"category": "Object Access",
"tags": [
"file-access",
"object-access",
"defense-evasion",
"indicator-removal"
],
"relatedEventIds": [
{
"id": 4656,
"log": "Security"
},
{
"id": 4663,
"log": "Security"
},
{