main
json 99 lines 2.32 KB
Raw
1 {
2 "id": "EDR_THREAT_DETECTIONS",
3 "title": "Wazuh EDR - Threat Detections",
4 "description": "High and critical Wazuh rule detections (rule.level ≥ 12) across all EDR event sources. Covers suspicious process access (Event ID 10), elevated rule triggers, most affected agents, and involved users — the primary triage dashboard for EDR alerts.",
5 "panels": [
6 {
7 "id": "high_severity",
8 "title": "High Severity (≥ 12)",
9 "type": "stat",
10 "w": 4,
11 "h": 100,
12 "lucene": "rule_level:>11"
13 },
14 {
15 "id": "critical",
16 "title": "Critical (≥ 15)",
17 "type": "stat",
18 "w": 4,
19 "h": 100,
20 "lucene": "rule_level:>14"
21 },
22 {
23 "id": "process_access",
24 "title": "Process Access Events (EID 10)",
25 "type": "stat",
26 "w": 4,
27 "h": 100,
28 "lucene": "data_win_system_eventID:10"
29 },
30 {
31 "id": "threats_over_time",
32 "title": "Threat Detections Over Time",
33 "type": "histogram",
34 "w": 12,
35 "h": 200,
36 "lucene": "rule_level:>11"
37 },
38 {
39 "id": "by_rule_level",
40 "title": "By Rule Level",
41 "type": "pie",
42 "w": 4,
43 "h": 300,
44 "lucene": "rule_level:>11",
45 "field": "rule_level",
46 "size": 10
47 },
48 {
49 "id": "by_agent",
50 "title": "By Agent",
51 "type": "pie",
52 "w": 4,
53 "h": 300,
54 "lucene": "rule_level:>11",
55 "field": "agent_name",
56 "size": 10
57 },
58 {
59 "id": "by_sysmon_type",
60 "title": "By Sysmon Event Type",
61 "type": "pie",
62 "w": 4,
63 "h": 300,
64 "lucene": "rule_level:>11 AND data_win_system_eventID:*",
65 "field": "data_win_system_eventID",
66 "size": 15
67 },
68 {
69 "id": "top_rules",
70 "title": "Top Rules Triggered",
71 "type": "bar_h",
72 "w": 6,
73 "h": 320,
74 "lucene": "rule_level:>11",
75 "field": "rule_description",
76 "size": 10
77 },
78 {
79 "id": "top_agents",
80 "title": "Most Affected Agents",
81 "type": "bar_h",
82 "w": 6,
83 "h": 320,
84 "lucene": "rule_level:>11",
85 "field": "agent_name",
86 "size": 10
87 },
88 {
89 "id": "top_users",
90 "title": "Top Users Involved",
91 "type": "bar_h",
92 "w": 6,
93 "h": 320,
94 "lucene": "rule_level:>11",
95 "field": "data_win_eventdata_user",
96 "size": 10
97 }
98 ]
99 }