main
json 109 lines 2.63 KB
Raw
1 {
2 "id": "EDR_NETWORK_CONNECTIONS",
3 "title": "Wazuh EDR - Network Connections",
4 "description": "Sysmon Event ID 3 (Network Connection), 8 (CreateRemoteThread), and 9 (RawAccessRead). Tracks outbound and inbound TCP/UDP connections by process, destination IPs, ports, and initiating users.",
5 "panels": [
6 {
7 "id": "total_network",
8 "title": "Network Connections (EID 3)",
9 "type": "stat",
10 "w": 4,
11 "h": 100,
12 "lucene": "data_win_system_eventID:3"
13 },
14 {
15 "id": "remote_threads",
16 "title": "Remote Thread Create (EID 8)",
17 "type": "stat",
18 "w": 4,
19 "h": 100,
20 "lucene": "data_win_system_eventID:8"
21 },
22 {
23 "id": "raw_access",
24 "title": "Raw Access Read (EID 9)",
25 "type": "stat",
26 "w": 4,
27 "h": 100,
28 "lucene": "data_win_system_eventID:9"
29 },
30 {
31 "id": "network_over_time",
32 "title": "Network Events Over Time",
33 "type": "histogram",
34 "w": 12,
35 "h": 200,
36 "lucene": "data_win_system_eventID:3"
37 },
38 {
39 "id": "by_protocol",
40 "title": "By Protocol",
41 "type": "pie",
42 "w": 4,
43 "h": 300,
44 "lucene": "data_win_system_eventID:3",
45 "field": "data_win_eventdata_protocol",
46 "size": 8
47 },
48 {
49 "id": "by_initiated",
50 "title": "Initiated vs Received",
51 "type": "pie",
52 "w": 4,
53 "h": 300,
54 "lucene": "data_win_system_eventID:3",
55 "field": "data_win_eventdata_initiated",
56 "size": 4
57 },
58 {
59 "id": "by_agent",
60 "title": "By Agent",
61 "type": "pie",
62 "w": 4,
63 "h": 300,
64 "lucene": "data_win_system_eventID:3",
65 "field": "agent_name",
66 "size": 10
67 },
68 {
69 "id": "top_dst_ips",
70 "title": "Top Destination IPs",
71 "type": "bar_h",
72 "w": 6,
73 "h": 320,
74 "lucene": "data_win_system_eventID:3",
75 "field": "data_win_eventdata_destinationIp",
76 "size": 10
77 },
78 {
79 "id": "top_dst_ports",
80 "title": "Top Destination Ports",
81 "type": "bar_h",
82 "w": 6,
83 "h": 320,
84 "lucene": "data_win_system_eventID:3",
85 "field": "data_win_eventdata_destinationPort",
86 "size": 10
87 },
88 {
89 "id": "top_src_images",
90 "title": "Top Connecting Processes",
91 "type": "bar_h",
92 "w": 6,
93 "h": 320,
94 "lucene": "data_win_system_eventID:3",
95 "field": "data_win_eventdata_image",
96 "size": 10
97 },
98 {
99 "id": "top_users",
100 "title": "Top Users",
101 "type": "bar_h",
102 "w": 6,
103 "h": 320,
104 "lucene": "data_win_system_eventID:3",
105 "field": "data_win_eventdata_user",
106 "size": 10
107 }
108 ]
109 }