September Updates
Query
DeviceTvmSoftwareVulnerabilities | join kind=inner (DeviceTvmSoftwareVulnerabilitiesKB) on $left.CveId == $right.CveId | where RecommendedSecurityUpdate contains "September 2024 Security Updates" |
extend URLSecurityUpdate = strcat("https://msrc.microsoft.com/update-guide/en-US/advisory/", CveId) | project CveId,IsExploitAvailable,URLSecurityUpdate,CvssScore,VulnerabilitySeverityLevel,RecommendedSecurityUpdate, DeviceName, DeviceId,RecommendedSecurityUpdateId, OSPlatform, SoftwareVendor, SoftwareName, SoftwareVersion | order by CvssScoreAbout this query
MITRE ATT&CK Technique(s)
| Technique ID | Title |
|---|---|
| T1203 | Exploitation for Client Execution |
Author: Sergio Albea (11/09/2024)
Devices affected by September Security updates which includes 4 Zero-days & 79 Vulnerabilities fixed
Description: Microsoft’s September 2024 Patch has addressed a significant number of security vulnerabilities, including four zero-day exploits and a total of 79 vulnerabilities across various products. This query helps to identify devices affected by the mentioned updates and add a column related to the corresponding updates/remediations information provided by Microsoft.
Explanation
This query is designed to identify devices that are affected by vulnerabilities addressed in Microsoft's September 2024 security updates. It specifically focuses on vulnerabilities that have been fixed, including four zero-day exploits and a total of 79 vulnerabilities.
Here's a simplified breakdown of what the query does:
-
Data Sources: It uses two tables,
DeviceTvmSoftwareVulnerabilitiesandDeviceTvmSoftwareVulnerabilitiesKB, which contain information about software vulnerabilities and their corresponding knowledge base articles. -
Joining Tables: The query performs an inner join between these two tables based on the
CveId, which is a unique identifier for each vulnerability. -
Filtering: It filters the results to include only those vulnerabilities that are addressed by the "September 2024 Security Updates."
-
Extending Data: It adds a new column,
URLSecurityUpdate, which provides a link to the Microsoft Security Response Center advisory page for each vulnerability. -
Selecting and Ordering Data: The query selects specific columns to display, such as the CVE ID, exploit availability, CVSS score (a measure of the severity of the vulnerability), and other relevant details about the affected devices and software. It then orders the results by the CVSS score to prioritize vulnerabilities based on their severity.
In essence, this query helps security teams quickly identify and prioritize devices that need attention due to vulnerabilities fixed in the September 2024 security updates.
Details

Sergio Albea
Released: July 21, 2026
Tables
Keywords
Operators
MITRE Techniques