main
json 81 lines 2.15 KB
Raw
1 {
2 "id": "EDR_IMAGE_LOAD",
3 "title": "Wazuh EDR - Driver & Image Load",
4 "description": "Sysmon Event ID 6 (Driver Loaded) and Event ID 7 (Image Loaded / DLL). Tracks kernel drivers and shared libraries loaded by processes. Signature status visibility supports detection of unsigned or untrusted modules — key indicators of rootkits and DLL injection.",
5 "panels": [
6 {
7 "id": "drivers_loaded",
8 "title": "Drivers Loaded (EID 6)",
9 "type": "stat",
10 "w": 6,
11 "h": 100,
12 "lucene": "data_win_system_eventID:6"
13 },
14 {
15 "id": "images_loaded",
16 "title": "Images (DLL) Loaded (EID 7)",
17 "type": "stat",
18 "w": 6,
19 "h": 100,
20 "lucene": "data_win_system_eventID:7"
21 },
22 {
23 "id": "image_load_over_time",
24 "title": "Image Load Events Over Time",
25 "type": "histogram",
26 "w": 12,
27 "h": 200,
28 "lucene": "data_win_system_eventID:6 OR data_win_system_eventID:7"
29 },
30 {
31 "id": "by_event_type",
32 "title": "Driver vs Image Load",
33 "type": "pie",
34 "w": 4,
35 "h": 300,
36 "lucene": "data_win_system_eventID:6 OR data_win_system_eventID:7",
37 "field": "data_win_system_eventID",
38 "size": 4
39 },
40 {
41 "id": "by_signed",
42 "title": "By Signature Status",
43 "type": "pie",
44 "w": 4,
45 "h": 300,
46 "lucene": "data_win_system_eventID:7",
47 "field": "data_win_eventdata_signed",
48 "size": 4
49 },
50 {
51 "id": "by_agent",
52 "title": "By Agent",
53 "type": "pie",
54 "w": 4,
55 "h": 300,
56 "lucene": "data_win_system_eventID:6 OR data_win_system_eventID:7",
57 "field": "agent_name",
58 "size": 10
59 },
60 {
61 "id": "top_loaded_images",
62 "title": "Top Loaded Images (DLL)",
63 "type": "bar_h",
64 "w": 6,
65 "h": 320,
66 "lucene": "data_win_system_eventID:7",
67 "field": "data_win_eventdata_imageLoaded",
68 "size": 10
69 },
70 {
71 "id": "top_loading_processes",
72 "title": "Top Loading Processes",
73 "type": "bar_h",
74 "w": 6,
75 "h": 320,
76 "lucene": "data_win_system_eventID:7",
77 "field": "data_win_eventdata_image",
78 "size": 10
79 }
80 ]
81 }