Find Chrome Installations Vulnerable to CVE-2022-2294
Google released Chrome 103.0.5060.114. In this release, Google fixed 4 security issues. The new fixes include:
- CVE-2022-2294: Heap buffer overflow in WebRTC.
- CVE-2022-2295: Type Confusion in V8.
- CVE-2022-2296: Use after free in Chrome OS Shell.
You can find more info on the critical issue in our Chrome 103 zero-day vulnerability blog post.
With the report below, you can easily find which computers in your network do not have this latest Chrome version installed. Simply run the report to get a complete overview of your environment.
Run our Chrome 103.0.5060.114 Query
Select Top 1000000 tblAssets.AssetID, tblAssets.AssetName, tblAssets.Domain, tsysAssetTypes.AssetTypename As AssetType, tblAssets.Username, tblAssets.Userdomain, tsysAssetTypes.AssetTypeIcon10 As icon, tblAssets.IPAddress, tblSoftwareUni.softwareName As Software, tblSoftware.softwareVersion As Version, tblSoftwareUni.SoftwarePublisher As Publisher, Case When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) > 103 Then 'Up to date' When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 103 And Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 5060 Then 'Up to date' When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 103 And Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 5060 And Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 114 Then 'Up to date' Else 'Out of date' End As [Patch Status], tsysIPLocations.IPLocation, tblAssetCustom.Manufacturer, tblAssetCustom.Model, tsysOS.OSname As OS, tblAssets.SP, tblAssets.Lastseen, tblAssets.Lasttried, tblSoftware.Lastchanged, Case When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) > 103 Then '#d4f4be' When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 103 And Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 5060 Then '#d4f4be' When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 103 And Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 5060 And Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 114 Then '#d4f4be' Else '#ffadad' End As backgroundcolor From tblAssets Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype Inner Join tsysIPLocations On tsysIPLocations.LocationID = tblAssets.LocationID Inner Join tblState On tblState.State = tblAssetCustom.State Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID Left Join tsysOS On tsysOS.OScode = tblAssets.OScode Where tblSoftwareUni.softwareName Like '%Google Chrome%' And tblSoftwareUni.SoftwarePublisher Like '%Google%' And tblState.Statename = 'Active'