-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal_decoder.xml
More file actions
106 lines (91 loc) · 2.95 KB
/
Copy pathlocal_decoder.xml
File metadata and controls
106 lines (91 loc) · 2.95 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
<!-- SomTechs SOC - local_decoder.xml
TP-Link Omada SDN Controller + EAP Access Point syslog decoders
Wazuh OS_Regex safe: no ?, no \[, no ^ in prematch, no | in regex
-->
<decoder name="omada">
<program_name>omada|omada_eap|tplink_omada|Omada_Controller</program_name>
</decoder>
<!-- WLAN: client connect -->
<decoder name="omada-wlan-connect">
<parent>omada</parent>
<prematch>connected|associated</prematch>
<regex>(\w\w:\w\w:\w\w:\w\w:\w\w:\w\w)</regex>
<order>srcmac</order>
</decoder>
<!-- WLAN: client disconnect -->
<decoder name="omada-wlan-disconnect">
<parent>omada</parent>
<prematch>disconnected|deauthenticated|disassociated</prematch>
<regex>(\w\w:\w\w:\w\w:\w\w:\w\w:\w\w)</regex>
<order>srcmac</order>
</decoder>
<!-- WLAN: auth failures -->
<decoder name="omada-wlan-authfail">
<parent>omada</parent>
<prematch>auth fail|wrong password|EAP fail</prematch>
<regex>(\w\w:\w\w:\w\w:\w\w:\w\w:\w\w)</regex>
<order>srcmac</order>
</decoder>
<!-- Firewall / ACL block events -->
<decoder name="omada-firewall">
<parent>omada</parent>
<prematch>Firewall|BLOCK|DROP|DENY|blocked</prematch>
<regex>(\d+.\d+.\d+.\d+)</regex>
<order>srcip</order>
</decoder>
<!-- Attack detection -->
<decoder name="omada-attack">
<parent>omada</parent>
<prematch>Attack|Flood|Scan|Spoof|DoS|DDoS</prematch>
<regex>(\d+.\d+.\d+.\d+)</regex>
<order>srcip</order>
</decoder>
<!-- WAN link events -->
<decoder name="omada-wan">
<parent>omada</parent>
<prematch>WAN|uplink|failover</prematch>
</decoder>
<!-- VPN events -->
<decoder name="omada-vpn">
<parent>omada</parent>
<prematch>VPN|IPSec|L2TP|OpenVPN|WireGuard</prematch>
</decoder>
<!-- DHCP lease events -->
<decoder name="omada-dhcp">
<parent>omada</parent>
<prematch>DHCP|IP assigned|DHCPACK</prematch>
<regex>(\d+.\d+.\d+.\d+)</regex>
<order>srcip</order>
</decoder>
<!-- AP availability -->
<decoder name="omada-ap-status">
<parent>omada</parent>
<prematch>AP offline|AP online|Access Point down|Access Point up</prematch>
</decoder>
<!-- Switch port/STP events -->
<decoder name="omada-switch">
<parent>omada</parent>
<prematch>loop detect|STP|spanning tree|link down|port down</prematch>
</decoder>
<!-- Admin/controller events -->
<decoder name="omada-admin">
<parent>omada</parent>
<prematch>admin login|Login success|Login fail|config change|firmware|upgrade</prematch>
</decoder>
<!-- EAP AP direct syslog (hostapd) -->
<decoder name="omada-eap-hostapd">
<program_name>hostapd</program_name>
<prematch>wlan</prematch>
</decoder>
<decoder name="omada-eap-assoc">
<parent>omada-eap-hostapd</parent>
<prematch>associated|Association Request</prematch>
<regex>STA (\w\w:\w\w:\w\w:\w\w:\w\w:\w\w)</regex>
<order>srcmac</order>
</decoder>
<decoder name="omada-eap-deauth">
<parent>omada-eap-hostapd</parent>
<prematch>disassociated|deauthenticated|disconnected</prematch>
<regex>STA (\w\w:\w\w:\w\w:\w\w:\w\w:\w\w)</regex>
<order>srcmac</order>
</decoder>