-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsysmon.json
More file actions
2734 lines (2734 loc) · 106 KB
/
sysmon.json
File metadata and controls
2734 lines (2734 loc) · 106 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 - Sysmon",
"version": "1.8.0",
"generatedAt": "2026-05-10T00:00:00Z",
"id": "https://raw.githubusercontent.com/zerber0s/windows-eid-data/main/sysmon.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 Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon",
"type": "primary"
}
]
},
"entries": [
{
"id": 1,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "Process created",
"summary": "A new process was created.",
"details": "Generated when a new process is created. This is one of the most forensically valuable Sysmon events, capturing the full process execution context including the executable path, command line arguments, parent process lineage, file hashes, and integrity level.",
"category": "Process Execution",
"tags": [
"process-creation",
"execution",
"defense-evasion",
"masquerading"
],
"relatedEventIds": [
{
"id": 5,
"log": "Sysmon"
},
{
"id": 4688,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1059",
"techniqueName": "Command and Scripting Interpreter",
"tactics": [
{
"tacticId": "TA0002",
"tacticName": "Execution"
}
]
},
{
"techniqueId": "T1036",
"techniqueName": "Masquerading",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Compare Image path against expected locations — system binaries should reside in System32 or SysWOW64",
"Review CommandLine for encoded payloads (base64, -EncodedCommand), LOLBAS flags (e.g., certutil -decode, regsvr32 /s /u, wscript /b, rundll32 with a non-standard export), or unusual argument patterns",
"Examine ParentImage to identify unexpected process parent-child relationships (e.g., Office apps spawning scripting engines)",
"Hash lookups against threat intelligence feeds can confirm known-bad binaries",
"IntegrityLevel of High or System for unexpected processes may indicate privilege escalation"
],
"commonFalsePositives": [
"Software installers and update mechanisms frequently spawn child processes",
"Administrative scripts and scheduled tasks running legitimate management tools",
"Development environments invoking compilers, interpreters, and build tools"
]
},
"keyFields": [
{
"name": "Image",
"xpath": "EventData/Data[@Name='Image']",
"description": "Full path of the newly created process executable"
},
{
"name": "CommandLine",
"xpath": "EventData/Data[@Name='CommandLine']",
"description": "Full command line including all arguments passed to the process"
},
{
"name": "ParentImage",
"xpath": "EventData/Data[@Name='ParentImage']",
"description": "Full path of the parent process that spawned this one"
},
{
"name": "ParentCommandLine",
"xpath": "EventData/Data[@Name='ParentCommandLine']",
"description": "Command line of the parent process"
},
{
"name": "User",
"xpath": "EventData/Data[@Name='User']",
"description": "Account context under which the process runs"
},
{
"name": "Hashes",
"xpath": "EventData/Data[@Name='Hashes']",
"description": "Configurable file hashes of the process executable (SHA256 recommended)"
},
{
"name": "CurrentDirectory",
"xpath": "EventData/Data[@Name='CurrentDirectory']",
"description": "Working directory of the new process"
},
{
"name": "IntegrityLevel",
"xpath": "EventData/Data[@Name='IntegrityLevel']",
"description": "Integrity level of the process (Low, Medium, High, System)"
},
{
"name": "ProcessId",
"xpath": "EventData/Data[@Name='ProcessId']",
"description": "Process ID of the newly created process"
},
{
"name": "ProcessGuid",
"xpath": "EventData/Data[@Name='ProcessGuid']",
"description": "Unique GUID for the process; use for cross-event correlation"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Suspicious Office Application Spawning Scripting Engine",
"rule": "Event\n| where Source == \"Microsoft-Windows-Sysmon\"\n| where EventID == 1\n| parse EventData with * '<Data Name=\"ParentImage\">' ParentImage '</Data>' *\n| parse EventData with * '<Data Name=\"Image\">' Image '</Data>' *\n| where ParentImage has_any (\"WINWORD.EXE\", \"EXCEL.EXE\", \"POWERPNT.EXE\", \"OUTLOOK.EXE\", \"MSPUB.EXE\")\n| where Image has_any (\"cmd.exe\", \"powershell.exe\", \"wscript.exe\", \"cscript.exe\", \"mshta.exe\", \"rundll32.exe\")\n| project TimeGenerated, Computer, Image, ParentImage\n| order by TimeGenerated desc",
"notes": "Adapt field parsing to your Sysmon ingestion method (Event table MMA, WindowsEvent AMA, or SysmonEvent custom table). Add CommandLine parsing for richer context."
},
{
"platform": "Sigma",
"title": "Suspicious Parent-Child Process Relationship",
"rule": "title: Suspicious Process Created by Office Application\nstatus: stable\nlogsource:\n category: process_creation\n product: windows\ndetection:\n selection:\n ParentImage|endswith:\n - '\\WINWORD.EXE'\n - '\\EXCEL.EXE'\n - '\\POWERPNT.EXE'\n - '\\OUTLOOK.EXE'\n Image|endswith:\n - '\\cmd.exe'\n - '\\powershell.exe'\n - '\\wscript.exe'\n - '\\cscript.exe'\n - '\\mshta.exe'\n condition: selection\nfalsepositives:\n - Macros legitimately invoking scripts for business automation\nlevel: high"
}
],
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-05-10"
},
{
"id": 2,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "File creation time changed",
"summary": "A process modified the creation timestamp of a file.",
"details": "Generated when a process changes the creation timestamp of a file, a technique known as timestomping. Timestomping makes malicious files appear to have been present on the system long before they were actually dropped, undermining timeline-based forensics. Legitimate software rarely alters file creation times.",
"category": "Timestomping",
"tags": [
"timestomping",
"defense-evasion",
"anti-forensics",
"file-activity"
],
"mitreAttack": [
{
"techniqueId": "T1070.006",
"techniqueName": "Indicator Removal: Timestomp",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"PreviousCreationUtcTime more recent than CreationUtcTime confirms deliberate backdating",
"Identify Image — timestomping by scripting engines, tools like touch.exe, or unknown binaries warrants investigation",
"Correlate TargetFilename with EID 11 (FileCreate) to establish when the file was actually written to disk",
"Check if the forged CreationUtcTime aligns with a date that would make the file appear pre-existing"
],
"commonFalsePositives": [
"Some archive extraction tools and installers set file timestamps to match the original packaged files",
"Build systems and deployment tools may normalize timestamps"
]
},
"keyFields": [
{
"name": "Image",
"xpath": "EventData/Data[@Name='Image']",
"description": "Full path of the process that modified the file timestamp"
},
{
"name": "TargetFilename",
"xpath": "EventData/Data[@Name='TargetFilename']",
"description": "Path of the file whose creation timestamp was changed"
},
{
"name": "CreationUtcTime",
"xpath": "EventData/Data[@Name='CreationUtcTime']",
"description": "The new (forged) creation timestamp written to the file"
},
{
"name": "PreviousCreationUtcTime",
"xpath": "EventData/Data[@Name='PreviousCreationUtcTime']",
"description": "The original creation timestamp before modification"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-05-10"
},
{
"id": 3,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "Network connection",
"summary": "A process initiated or received a network connection.",
"details": "Generated when a process makes or accepts a TCP/UDP network connection. This event captures the process identity along with full source and destination addressing, enabling detection of C2 beaconing, lateral movement, and data exfiltration at the process level.",
"category": "Network Activity",
"tags": [
"network",
"c2",
"lateral-movement",
"exfiltration",
"beaconing"
],
"relatedEventIds": [
{
"id": 22,
"log": "Sysmon"
}
],
"mitreAttack": [
{
"techniqueId": "T1071",
"techniqueName": "Application Layer Protocol",
"tactics": [
{
"tacticId": "TA0011",
"tacticName": "Command and Control"
}
]
},
{
"techniqueId": "T1571",
"techniqueName": "Non-Standard Port",
"tactics": [
{
"tacticId": "TA0011",
"tacticName": "Command and Control"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Flag processes that do not ordinarily make network connections — this includes LOLBAS tools: LOLBins such as regsvr32.exe, mshta.exe, certutil.exe, and bitsadmin.exe; LOLBAS Scripts such as wscript.exe and cscript.exe; and libraries loaded via rundll32.exe",
"Check DestinationIp against threat intelligence; newly registered domains and dynamic DNS providers are common C2 indicators",
"Periodic beaconing patterns (regular intervals to the same IP) suggest C2 heartbeats",
"Correlate with EID 22 to link DNS resolution to the subsequent connection"
],
"commonFalsePositives": [
"Software update checks and telemetry from installed applications",
"Browsers, mail clients, and other network-facing applications making routine connections",
"Security and endpoint management tools performing check-ins"
]
},
"keyFields": [
{
"name": "Image",
"xpath": "EventData/Data[@Name='Image']",
"description": "Full path of the process initiating or receiving the connection"
},
{
"name": "SourceIp",
"xpath": "EventData/Data[@Name='SourceIp']",
"description": "Source IP address of the connection"
},
{
"name": "SourcePort",
"xpath": "EventData/Data[@Name='SourcePort']",
"description": "Source port number"
},
{
"name": "DestinationIp",
"xpath": "EventData/Data[@Name='DestinationIp']",
"description": "Destination IP address of the connection"
},
{
"name": "DestinationPort",
"xpath": "EventData/Data[@Name='DestinationPort']",
"description": "Destination port number"
},
{
"name": "Protocol",
"xpath": "EventData/Data[@Name='Protocol']",
"description": "Network protocol used (tcp or udp)"
},
{
"name": "User",
"xpath": "EventData/Data[@Name='User']",
"description": "Account context of the process making the connection"
},
{
"name": "Initiated",
"xpath": "EventData/Data[@Name='Initiated']",
"description": "Whether the connection was initiated (true) or received (false) by the process"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Unexpected Process Making Outbound Connection",
"rule": "Event\n| where Source == \"Microsoft-Windows-Sysmon\"\n| where EventID == 3\n| parse EventData with * '<Data Name=\"Image\">' Image '</Data>' *\n| parse EventData with * '<Data Name=\"DestinationIp\">' DestinationIp '</Data>' *\n| parse EventData with * '<Data Name=\"DestinationPort\">' DestinationPort '</Data>' *\n| where Image has_any (\"notepad.exe\", \"mshta.exe\", \"regsvr32.exe\", \"wscript.exe\", \"cscript.exe\", \"certutil.exe\", \"bitsadmin.exe\")\n| project TimeGenerated, Computer, Image, DestinationIp, DestinationPort\n| order by TimeGenerated desc",
"notes": "Expand the process list based on your environment's baseline. LOLBAS tools (binaries, scripts, and library loaders) making outbound connections on unusual ports are high-fidelity C2 indicators."
},
{
"platform": "Sigma",
"title": "LOLBAS Tool Making Network Connection",
"rule": "title: LOLBAS Network Connection\nstatus: stable\nlogsource:\n category: network_connection\n product: windows\ndetection:\n selection:\n Initiated: 'true'\n Image|endswith:\n - '\\mshta.exe'\n - '\\regsvr32.exe'\n - '\\certutil.exe'\n - '\\bitsadmin.exe'\n - '\\wscript.exe'\n - '\\cscript.exe'\n - '\\msbuild.exe'\n - '\\wmic.exe'\n - '\\rundll32.exe'\n condition: selection\nfalsepositives:\n - certutil performing legitimate CRL checks\n - bitsadmin performing authorized downloads\n - msbuild during legitimate build pipeline tasks\nlevel: high",
"notes": "Covers LOLBAS Binaries (mshta, regsvr32, certutil, bitsadmin, wmic, msbuild, rundll32) and Scripts (wscript, cscript). rundll32 and regsvr32 are also entry points for LOLBAS Libraries (malicious .dll side-loading)."
}
],
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-04-07"
},
{
"id": 4,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "Sysmon service state changed",
"summary": "The Sysmon service started or stopped.",
"details": "Generated when the Sysmon service itself starts or stops. An unexpected stop outside planned maintenance or updates may indicate an adversary attempting to disable telemetry as part of defense evasion.",
"category": "Service Activity",
"tags": [
"sysmon",
"defense-evasion",
"tamper",
"service"
],
"relatedEventIds": [
{
"id": 16,
"log": "Sysmon"
},
{
"id": 7036,
"log": "System"
},
{
"id": 4697,
"log": "Security"
}
],
"mitreAttack": [
{
"techniqueId": "T1685",
"techniqueName": "Disable or Modify Tools",
"tactics": [
{
"tacticId": "TA0112",
"tacticName": "Defense Impairment"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Unexpected State: Stopped outside of maintenance windows warrants immediate investigation",
"Correlate with Security EID 4688 to identify what process stopped the Sysmon service",
"Check for preceding EID 16 events indicating a configuration change before the stop",
"Review for sc.exe, net.exe, or PowerShell Stop-Service invocations in EID 1"
],
"commonFalsePositives": [
"Planned Sysmon updates or reconfigurations by IT or security teams",
"System reboots will produce a Stopped event followed by a Running event on startup"
]
},
"keyFields": [
{
"name": "State",
"xpath": "EventData/Data[@Name='State']",
"description": "Service state: Running or Stopped"
},
{
"name": "Version",
"xpath": "EventData/Data[@Name='Version']",
"description": "Sysmon driver version"
},
{
"name": "SchemaVersion",
"xpath": "EventData/Data[@Name='SchemaVersion']",
"description": "Schema version of the Sysmon event format"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"volumeIndicator": "low",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-05-10"
},
{
"id": 5,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "Process terminated",
"summary": "A process exited.",
"details": "Generated when a monitored process terminates. The time delta between EID 1 (process creation) and EID 5 for the same ProcessId indicates process lifetime duration. Short-lived processes that spawn and terminate within seconds are commonly used to execute payloads while avoiding prolonged visibility.",
"category": "Process Execution",
"tags": [
"process-termination",
"execution",
"defense-evasion"
],
"relatedEventIds": [
{
"id": 1,
"log": "Sysmon"
}
],
"mitreAttack": [
{
"techniqueId": "T1059",
"techniqueName": "Command and Scripting Interpreter",
"tactics": [
{
"tacticId": "TA0002",
"tacticName": "Execution"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Calculate process lifetime by correlating ProcessId across EID 1 and EID 5 — very short-lived processes are a detection signal",
"Repeated rapid creation and termination of the same Image may indicate a dropper or loader pattern",
"Correlate with EID 3 and EID 11 to see what network connections or files were created during the process lifetime"
],
"commonFalsePositives": [
"Short-lived system processes (e.g., conhost.exe, WMI providers) are normal",
"Scripting engines invoked for single commands terminate quickly by design"
]
},
"keyFields": [
{
"name": "Image",
"xpath": "EventData/Data[@Name='Image']",
"description": "Full path of the terminated process executable"
},
{
"name": "ProcessId",
"xpath": "EventData/Data[@Name='ProcessId']",
"description": "Process ID of the terminated process"
},
{
"name": "ProcessGuid",
"xpath": "EventData/Data[@Name='ProcessGuid']",
"description": "Unique GUID for correlation with the corresponding EID 1 creation event"
},
{
"name": "UtcTime",
"xpath": "EventData/Data[@Name='UtcTime']",
"description": "UTC timestamp of process termination"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"volumeIndicator": "high",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-03-30"
},
{
"id": 6,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "Driver loaded",
"summary": "A driver was loaded into the kernel.",
"details": "Generated when a driver is loaded into the kernel. Kernel-mode drivers have unrestricted system access, making malicious driver loading (BYOVD -- Bring Your Own Vulnerable Driver) a high-severity technique. Modern systems enforce Driver Signature Enforcement (DSE), so unsigned or invalidly signed drivers are notable on production endpoints.",
"category": "Driver Load",
"tags": [
"driver",
"kernel",
"byovd",
"defense-evasion",
"privilege-escalation"
],
"mitreAttack": [
{
"techniqueId": "T1014",
"techniqueName": "Rootkit",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
},
{
"techniqueId": "T1543",
"techniqueName": "Create or Modify System Process",
"tactics": [
{
"tacticId": "TA0003",
"tacticName": "Persistence"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Signed: false or SignatureStatus not Valid on a production system is a critical finding",
"Check ImageLoaded path — drivers should load from System32\\drivers or a known vendor path",
"Hash the driver and check against known BYOVD databases (e.g., loldrivers.io)",
"Correlate with EID 1 to identify what process initiated the driver load"
],
"commonFalsePositives": [
"Legitimate security software, virtualization platforms, and hardware vendor drivers",
"Windows updates loading new or updated drivers"
]
},
"keyFields": [
{
"name": "ImageLoaded",
"xpath": "EventData/Data[@Name='ImageLoaded']",
"description": "Full path of the loaded driver file"
},
{
"name": "Hashes",
"xpath": "EventData/Data[@Name='Hashes']",
"description": "Configurable hashes of the driver file"
},
{
"name": "Signed",
"xpath": "EventData/Data[@Name='Signed']",
"description": "Whether the driver has a valid digital signature (true/false)"
},
{
"name": "SignatureStatus",
"xpath": "EventData/Data[@Name='SignatureStatus']",
"description": "Signature validation result (Valid, Expired, Revoked, etc.)"
},
{
"name": "Signature",
"xpath": "EventData/Data[@Name='Signature']",
"description": "Name of the signer"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-05-10",
"relatedEventIds": [
{
"id": 3001,
"log": "CodeIntegrity"
},
{
"id": 3033,
"log": "CodeIntegrity"
}
]
},
{
"id": 7,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "Image loaded",
"summary": "A DLL or executable image was loaded into a process.",
"details": "Generated when a module (DLL or EXE) is loaded into a process. This event is high-volume and typically requires targeted filtering to be operationally useful. Primary detection scenarios include DLL side-loading (a legitimate process loading a malicious DLL from an unexpected path), reflective DLL injection, and unsigned modules loaded into processes that should only load signed code.",
"category": "DLL Load",
"tags": [
"dll",
"dll-sideloading",
"injection",
"defense-evasion"
],
"relatedEventIds": [
{
"id": 1,
"log": "Sysmon"
},
{
"id": 10,
"log": "Sysmon"
},
{
"id": 316,
"log": "PrintSpooler"
}
],
"mitreAttack": [
{
"techniqueId": "T1574.001",
"techniqueName": "Hijack Execution Flow: DLL",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
},
{
"techniqueId": "T1055",
"techniqueName": "Process Injection",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Flag unsigned DLLs (Signed: false) loaded by security-sensitive processes like lsass.exe, winlogon.exe",
"DLLs loaded from user-writable paths (AppData, Temp, Downloads) by system or trusted processes indicate side-loading",
"Compare ImageLoaded name against known DLL hijacking targets (e.g., version.dll, winhttp.dll in application directories)",
"Hash lookups can identify known malicious or vulnerable modules"
],
"commonFalsePositives": [
"High-volume event — most loads are legitimate; effective detection requires tight scoping to sensitive processes",
"Legitimate software loading unsigned third-party DLLs for plugins or add-ons"
]
},
"keyFields": [
{
"name": "Image",
"xpath": "EventData/Data[@Name='Image']",
"description": "Full path of the process loading the module"
},
{
"name": "ImageLoaded",
"xpath": "EventData/Data[@Name='ImageLoaded']",
"description": "Full path of the loaded DLL or module"
},
{
"name": "Hashes",
"xpath": "EventData/Data[@Name='Hashes']",
"description": "Configurable hashes of the loaded module"
},
{
"name": "Signed",
"xpath": "EventData/Data[@Name='Signed']",
"description": "Whether the module has a valid digital signature (true/false)"
},
{
"name": "SignatureStatus",
"xpath": "EventData/Data[@Name='SignatureStatus']",
"description": "Signature validation result (Valid, Expired, Revoked, etc.)"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"detectionRules": [
{
"platform": "KQL",
"title": "Unsigned DLL Loaded by Sensitive Process",
"rule": "Event\n| where Source == \"Microsoft-Windows-Sysmon\"\n| where EventID == 7\n| parse EventData with * '<Data Name=\"Image\">' Image '</Data>' *\n| parse EventData with * '<Data Name=\"ImageLoaded\">' ImageLoaded '</Data>' *\n| parse EventData with * '<Data Name=\"Signed\">' Signed '</Data>' *\n| where Signed == \"false\"\n| where Image has_any (\"lsass.exe\", \"winlogon.exe\", \"csrss.exe\", \"svchost.exe\")\n| project TimeGenerated, Computer, Image, ImageLoaded, Signed\n| order by TimeGenerated desc",
"notes": "This event is very high-volume. Scope tightly to sensitive processes. For DLL side-loading, additionally filter ImageLoaded for paths outside System32."
},
{
"platform": "Sigma",
"title": "Unsigned DLL Loaded from User-Writable Path",
"rule": "title: Unsigned DLL Loaded from Suspicious Path\nstatus: experimental\nlogsource:\n category: image_load\n product: windows\ndetection:\n selection:\n Signed: 'false'\n ImageLoaded|contains:\n - '\\AppData\\'\n - '\\Temp\\'\n - '\\Users\\'\n condition: selection\nfalsepositives:\n - Development builds and unsigned test DLLs\nlevel: medium"
}
],
"volumeIndicator": "medium",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-05-10"
},
{
"id": 8,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "CreateRemoteThread",
"summary": "A process created a thread in another process.",
"details": "Generated when a process creates a thread in a different process using the CreateRemoteThread API, a primary mechanism for classic code injection. This technique allows an attacker to execute arbitrary code within the address space of another process, often targeting sensitive system processes.",
"category": "Code Injection",
"tags": [
"injection",
"createremotethread",
"execution",
"defense-evasion"
],
"relatedEventIds": [
{
"id": 10,
"log": "Sysmon"
}
],
"mitreAttack": [
{
"techniqueId": "T1055.003",
"techniqueName": "Process Injection: Thread Execution Hijacking",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
},
{
"techniqueId": "T1055",
"techniqueName": "Process Injection",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"TargetImage of lsass.exe, winlogon.exe, or explorer.exe is high-priority — these are common injection targets",
"StartAddress outside the address space of known loaded modules indicates shellcode",
"Correlate SourceImage with EID 1 to understand the origin of the injecting process",
"Correlate with EID 10 on the same TargetImage in the same time window to confirm the full injection sequence",
"StartAddress pointing outside known module boundaries (heap or stack memory rather than mapped DLL space) indicates shellcode execution"
],
"commonFalsePositives": [
"Some legitimate security products and debuggers use CreateRemoteThread for inspection or instrumentation",
"JIT compilers and some virtualization tools may use cross-process thread creation"
]
},
"keyFields": [
{
"name": "SourceImage",
"xpath": "EventData/Data[@Name='SourceImage']",
"description": "Full path of the process that created the remote thread (the injector)"
},
{
"name": "TargetImage",
"xpath": "EventData/Data[@Name='TargetImage']",
"description": "Full path of the process that received the injected thread"
},
{
"name": "NewThreadId",
"xpath": "EventData/Data[@Name='NewThreadId']",
"description": "Thread ID of the newly created remote thread"
},
{
"name": "StartAddress",
"xpath": "EventData/Data[@Name='StartAddress']",
"description": "Memory address where the remote thread begins execution"
},
{
"name": "StartModule",
"xpath": "EventData/Data[@Name='StartModule']",
"description": "Module containing the start address, if mapped to a known module"
},
{
"name": "StartFunction",
"xpath": "EventData/Data[@Name='StartFunction']",
"description": "Function name at the start address, if resolved"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"detectionRules": [
{
"platform": "KQL",
"title": "CreateRemoteThread into Sensitive Process",
"rule": "Event\n| where Source == \"Microsoft-Windows-Sysmon\"\n| where EventID == 8\n| parse EventData with * '<Data Name=\"SourceImage\">' SourceImage '</Data>' *\n| parse EventData with * '<Data Name=\"TargetImage\">' TargetImage '</Data>' *\n| where TargetImage has_any (\"lsass.exe\", \"winlogon.exe\", \"explorer.exe\", \"svchost.exe\", \"csrss.exe\")\n| where SourceImage !has \"\\\\Windows\\\\\"\n| project TimeGenerated, Computer, SourceImage, TargetImage\n| order by TimeGenerated desc"
},
{
"platform": "Sigma",
"title": "CreateRemoteThread into lsass.exe",
"rule": "title: CreateRemoteThread into lsass.exe\nstatus: stable\nlogsource:\n category: create_remote_thread\n product: windows\ndetection:\n selection:\n TargetImage|endswith: '\\lsass.exe'\n filter:\n SourceImage|startswith: 'C:\\Windows\\'\n condition: selection and not filter\nfalsepositives:\n - Security products using thread injection for monitoring\nlevel: critical"
}
],
"volumeIndicator": "low",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-05-10"
},
{
"id": 9,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "RawAccessRead",
"summary": "A process read from a disk device using raw access.",
"details": "Generated when a process reads directly from a disk volume using raw access (bypassing the filesystem), detected via \\\\.\\PhysicalDrive or \\\\.\\HarddiskVolume handles. Raw disk access is used by credential harvesting tools (to read NTDS.dit or hibernation/page files directly), disk imaging utilities, rootkits, and destructive wipers. Legitimate consumers are narrow: backup software, disk management utilities, and forensic tools.",
"category": "Disk Access",
"tags": [
"raw-access",
"credential-access",
"defense-evasion",
"collection"
],
"relatedEventIds": [
{
"id": 1,
"log": "Sysmon"
}
],
"mitreAttack": [
{
"techniqueId": "T1003.003",
"techniqueName": "OS Credential Dumping: NTDS",
"tactics": [
{
"tacticId": "TA0006",
"tacticName": "Credential Access"
}
]
},
{
"techniqueId": "T1561.001",
"techniqueName": "Disk Wipe: Disk Content Wipe",
"tactics": [
{
"tacticId": "TA0040",
"tacticName": "Impact"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"Identify Image — raw disk access by anything other than known backup or forensic tools is suspicious",
"Correlate with EID 1 to inspect the full command line of the accessing process",
"Raw access targeting PhysicalDrive0 or the system volume may indicate credential harvesting or disk wiping"
],
"commonFalsePositives": [
"Enterprise backup agents (e.g., Veeam, Veritas) performing volume-level backups",
"Disk diagnostic and defragmentation utilities",
"Windows VSS (Volume Shadow Copy Service) during snapshot operations"
]
},
"keyFields": [
{
"name": "Image",
"xpath": "EventData/Data[@Name='Image']",
"description": "Full path of the process performing raw disk access"
},
{
"name": "Device",
"xpath": "EventData/Data[@Name='Device']",
"description": "The disk device path being read (e.g., \\Device\\HarddiskVolume2)"
},
{
"name": "ProcessId",
"xpath": "EventData/Data[@Name='ProcessId']",
"description": "Process ID of the reading process"
}
],
"source": {
"name": "Microsoft Sysinternals - Sysmon",
"url": "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon"
},
"volumeIndicator": "low",
"windowsVersions": {
"minVersion": "Windows 7 / Server 2008 R2"
},
"lastReviewed": "2026-04-07"
},
{
"id": 10,
"log": "Sysmon",
"provider": "Microsoft-Windows-Sysmon",
"channel": "Microsoft-Windows-Sysmon/Operational",
"level": "Information",
"title": "ProcessAccess",
"summary": "A process opened a handle to another process.",
"details": "Generated when a process opens a handle to another process. The GrantedAccess value indicates the access rights requested, and the CallTrace captures the call stack at the time of access. This event is critical for detecting credential dumping (access to lsass.exe) and process injection preparation.",
"category": "Code Injection",
"tags": [
"credential-dumping",
"lsass",
"injection",
"process-access"
],
"relatedEventIds": [
{
"id": 8,
"log": "Sysmon"
}
],
"mitreAttack": [
{
"techniqueId": "T1003.001",
"techniqueName": "OS Credential Dumping: LSASS Memory",
"tactics": [
{
"tacticId": "TA0006",
"tacticName": "Credential Access"
}
]
},
{
"techniqueId": "T1055",
"techniqueName": "Process Injection",
"tactics": [
{
"tacticId": "TA0005",
"tacticName": "Stealth"
}
]
}
],
"notesGuidance": {
"investigationPivots": [
"TargetImage of lsass.exe with GrantedAccess containing VM_READ rights (0x10) is the primary credential dumping signal",
"Review CallTrace for entries outside known module ranges (unknown or unbacked memory regions indicate syscall abuse or injection)",
"SourceImage that is unexpected (e.g., cmd.exe, PowerShell, a dropped binary) accessing lsass.exe requires immediate triage",
"Correlate with EID 8 on the same target to detect combined ProcessAccess + CreateRemoteThread injection patterns"
],
"commonFalsePositives": [
"AV, EDR, and DLP agents legitimately access lsass.exe for security monitoring",
"Windows Error Reporting (WerFault.exe) may open lsass.exe for crash reporting"
]
},
"keyFields": [
{
"name": "SourceImage",
"xpath": "EventData/Data[@Name='SourceImage']",
"description": "Full path of the process opening the handle"
},
{
"name": "TargetImage",
"xpath": "EventData/Data[@Name='TargetImage']",
"description": "Full path of the process being accessed"
},
{
"name": "GrantedAccess",
"xpath": "EventData/Data[@Name='GrantedAccess']",
"description": "Hex bitmask of access rights granted (e.g., 0x1010 = PROCESS_VM_READ + PROCESS_QUERY_INFORMATION)"
},
{
"name": "CallTrace",
"xpath": "EventData/Data[@Name='CallTrace']",
"description": "Call stack at the time of access; entries from unbacked memory indicate injection or direct syscalls"
},
{
"name": "SourceProcessId",
"xpath": "EventData/Data[@Name='SourceProcessId']",
"description": "Process ID of the source (accessing) process"
},
{