You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Parsers/ASimNetworkSession/ARM/ASimNetworkSessionCiscoMerakiSyslog/ASimNetworkSessionCiscoMerakiSyslog.json
Copy file name to clipboardExpand all lines: Parsers/ASimNetworkSession/Parsers/ASimNetworkSessionCiscoMerakiSyslog.yaml
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Parser:
2
2
Title: Network Session ASIM parser for Cisco Meraki
3
-
Version: '1.2.1'
4
-
LastUpdated: Jul 19, 2024
3
+
Version: '1.2.2'
4
+
LastUpdated: Nov 23, 2025
5
5
Product:
6
6
Name: Cisco Meraki
7
7
Normalization:
@@ -157,14 +157,20 @@ ParserQuery: |
157
157
| project-rename LogMessage = SyslogMessage
158
158
);
159
159
let PreFilteredData = allData
160
-
| where not(disabled) and (LogMessage has_any("flows", "firewall", "ids-alerts") or LogMessage has_all("security_event", "ids-alerted") or (LogMessage has "events" and (LogMessage has_any ("Blocked DHCP server response", "association") or (LogMessage has "VRRP packet" and not(LogMessage has_any ("VRRP passive", "VRRP active"))) or (LogMessage has "disassociation" and not(LogMessage has_any ("auth_neg_failed", "dhcp"))))) or (LogMessage has "airmarshal_events" and LogMessage has_any("ssid_spoofing_detected", "rogue_ssid_detected")))
or LogMessage has_all("security_event", "ids-alerted")
163
+
or LogMessage has_all("security_event", "ids_alerted")
164
+
or (LogMessage has "events" and (LogMessage has_any ("Blocked DHCP server response", "association") or (LogMessage has "VRRP packet" and not(LogMessage has_any ("VRRP passive", "VRRP active"))) or (LogMessage has "disassociation" and not(LogMessage has_any ("auth_neg_failed", "dhcp")))))
165
+
or (LogMessage has "airmarshal_events" and LogMessage has_any("ssid_spoofing_detected", "rogue_ssid_detected"))
Copy file name to clipboardExpand all lines: Parsers/ASimNetworkSession/Parsers/vimNetworkSessionCiscoMerakiSyslog.yaml
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Parser:
2
2
Title: Network Session ASIM filtering parser for Cisco Meraki
3
-
Version: '1.2.1'
4
-
LastUpdated: Jul 19, 2024
3
+
Version: '1.2.2'
4
+
LastUpdated: Nov 23, 2025
5
5
Product:
6
6
Name: Cisco Meraki
7
7
Normalization:
@@ -197,7 +197,13 @@ ParserQuery: |
197
197
);
198
198
let PreFilteredData = allData
199
199
| where not(disabled) and (isnull(starttime) or TimeGenerated >= starttime)
200
-
and (isnull(endtime) or TimeGenerated <= endtime) and (LogMessage has_any("flows", "firewall", "ids-alerts") or LogMessage has_all("security_event", "ids-alerted") or (LogMessage has "events" and (LogMessage has_any ("Blocked DHCP server response", "association") or (LogMessage has "VRRP packet" and not(LogMessage has_any ("VRRP passive", "VRRP active"))) or (LogMessage has "disassociation" and not(LogMessage has_any ("auth_neg_failed", "dhcp"))))) or (LogMessage has "airmarshal_events" and LogMessage has_any("ssid_spoofing_detected", "rogue_ssid_detected")))
200
+
and (isnull(endtime) or TimeGenerated <= endtime) and (
or LogMessage has_all("security_event", "ids-alerted")
203
+
or LogMessage has_all("security_event", "ids_alerted")
204
+
or (LogMessage has "events" and (LogMessage has_any ("Blocked DHCP server response", "association") or (LogMessage has "VRRP packet" and not(LogMessage has_any ("VRRP passive", "VRRP active"))) or (LogMessage has "disassociation" and not(LogMessage has_any ("auth_neg_failed", "dhcp")))))
205
+
or (LogMessage has "airmarshal_events" and LogMessage has_any("ssid_spoofing_detected", "rogue_ssid_detected"))
0 commit comments