main
json 79 lines 2.01 KB
Raw
1 {
2 "id": "EDR_PROCESS_ACTIVITY",
3 "title": "Wazuh EDR - Process Activity",
4 "description": "Sysmon Event ID 1 (Process Create), 5 (Process Terminated), and 25 (Process Tampering). Covers executed binaries, command-line arguments, parent process chains, and the users initiating execution.",
5 "panels": [
6 {
7 "id": "process_create",
8 "title": "Process Create (EID 1)",
9 "type": "stat",
10 "w": 4,
11 "h": 100,
12 "lucene": "data_win_system_eventID:1"
13 },
14 {
15 "id": "process_terminate",
16 "title": "Process Terminate (EID 5)",
17 "type": "stat",
18 "w": 4,
19 "h": 100,
20 "lucene": "data_win_system_eventID:5"
21 },
22 {
23 "id": "process_tamper",
24 "title": "Process Tampering (EID 25)",
25 "type": "stat",
26 "w": 4,
27 "h": 100,
28 "lucene": "data_win_system_eventID:25"
29 },
30 {
31 "id": "process_over_time",
32 "title": "Process Events Over Time",
33 "type": "histogram",
34 "w": 12,
35 "h": 200,
36 "lucene": "data_win_system_eventID:1 OR data_win_system_eventID:5 OR data_win_system_eventID:25"
37 },
38 {
39 "id": "top_images",
40 "title": "Top Executed Images",
41 "type": "bar_h",
42 "w": 6,
43 "h": 320,
44 "lucene": "data_win_system_eventID:1",
45 "field": "data_win_eventdata_image",
46 "size": 10
47 },
48 {
49 "id": "top_parent_images",
50 "title": "Top Parent Images",
51 "type": "bar_h",
52 "w": 6,
53 "h": 320,
54 "lucene": "data_win_system_eventID:1",
55 "field": "data_win_eventdata_parentImage",
56 "size": 10
57 },
58 {
59 "id": "top_cmdlines",
60 "title": "Top Command Lines",
61 "type": "bar_h",
62 "w": 6,
63 "h": 320,
64 "lucene": "data_win_system_eventID:1",
65 "field": "data_win_eventdata_commandLine",
66 "size": 10
67 },
68 {
69 "id": "top_users",
70 "title": "Top Users",
71 "type": "bar_h",
72 "w": 6,
73 "h": 320,
74 "lucene": "data_win_system_eventID:1",
75 "field": "data_win_eventdata_user",
76 "size": 10
77 }
78 ]
79 }