Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix boolean check in PossibleWebpBufferOverflow rule #11648

Merged
merged 5 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Solutions/Cisco Meraki Events via REST API/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
| **Version** | **Date Modified (DD-MM-YYYY)** | **Change History** |
|-------------|--------------------------------|--------------------------------------------------------------------|
| 3.0.2 | 10-01-2025 | Preview tag removed from **Data Connector**. Making connector Global |
| 3.0.2 | 10-01-2025 | Transitioned the **CCP Connector** to General Availability (GA). |
| 3.0.1 | 30-09-2024 | Cisco Meraki via REST API configuration Changes pagination fix |
| 3.0.0 | 27-12-2023 | Added Solution with CCP connector |
| 3.0.0 | 27-12-2023 | Initial Solution Release with new addition of **CCP Connector** |
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ query: |-
| where CveId == "CVE-2023-4863"
| distinct DeviceId;
union DeviceProcessEvents, DeviceNetworkEvents, DeviceEvents
| where DeviceId in (VulnDevices) and InitiatingProcessCommandLine has(".webp") or ProcessCommandLine has(".webp")
| where DeviceId in (VulnDevices) and (InitiatingProcessCommandLine has(".webp") or ProcessCommandLine has(".webp"))
| extend Name = tostring(split(AccountUpn, "@")[0]), UPNSuffix = tostring(split(AccountUpn, "@")[1])
| extend HostName = tostring(split(DeviceName, ".")[0]), DomainIndex = toint(indexof(DeviceName, '.'))
| extend HostNameDomain = iff(DomainIndex != -1, substring(DeviceName, DomainIndex + 1), DeviceName)
Expand Down Expand Up @@ -84,4 +84,4 @@ alertDetailsOverride:
alertDynamicProperties: []
eventGroupingSettings:
aggregationKind: SingleAlert
version: 1.1.1
version: 1.1.2
Binary file modified Solutions/Microsoft Defender XDR/Package/3.0.11.zip
Binary file not shown.
Loading
Loading