Query Details
**Ivanti Vulnerabilities CVE-2025-0282 and CVE-2025-0283** ššš-šššš-šššš 9.0 (Critical) A stack-based buffer overflow in Ivanti Connect Secure before version 22.7R2.5, Ivanti Policy Secure before version 22.7R1.2, and Ivanti Neurons for ZTA gateways before version 22.7R2.3 allows a remote unauthenticated attacker to achieve remote code execution. ššš-šššš-šššš 7.0 (High) A stack-based buffer overflow in Ivanti Connect Secure before version 22.7R2.5, Ivanti Policy Secure before version 22.7R1.2, and Ivanti Neurons for ZTA gateways before version 22.7R2.3 allows a local authenticated attacker to escalate their privileges. This query detect previous versions of Ivanti Connect Secure 22.7R2.5 to be updated ASAP using the patch provided by Ivanti. **Ivanti Secure Access Client**: ivanti_secure_access = VPN client Only pulse_application_launcher = VPN client with launcher (needed for MFA login with mini browser in client ) ``` DeviceTvmSoftwareInventory | where SoftwareVendor has "ivanti" | extend SoftwareVersionD =replace_string(SoftwareVersion,".","") | extend firstDigits = toint(substring(SoftwareVersionD,0,5)) | where firstDigits < 22731 and (SoftwareName startswith "ivanti_secure_access" or SoftwareName has "pulse_application_launcher" ) | distinct DeviceName,SoftwareVersion, SoftwareName, SoftwareVendor ```
This query is designed to identify devices that are running outdated versions of Ivanti software, which are vulnerable to two specific security issues, CVE-2025-0282 and CVE-2025-0283. Here's a simplified breakdown of what the query does:
Data Source: It looks at the DeviceTvmSoftwareInventory table, which contains information about software installed on devices.
Filter by Vendor: It filters the data to only include software from the vendor "Ivanti."
Version Processing:
Version Check:
Output:
The goal of this query is to identify devices that need to be updated to a newer version of Ivanti software to mitigate the risks associated with the identified vulnerabilities. The query specifically targets Ivanti Secure Access Client and Pulse Application Launcher, which are used for VPN access and may require updates to ensure security.

Sergio Albea
Released: January 15, 2025
Tables
Keywords
Operators