Skip to content

Commit

Permalink
Merge pull request #11648 from Kisbogyi/WebpCheckFix
Browse files Browse the repository at this point in the history
Fix boolean check in PossibleWebpBufferOverflow rule
  • Loading branch information
v-prasadboke authored Jan 13, 2025
2 parents b38f113 + c18d3a4 commit 387b404
Show file tree
Hide file tree
Showing 5 changed files with 525 additions and 525 deletions.
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

0 comments on commit 387b404

Please sign in to comment.