Discover Chrome 90 Vulnerabilities
Google released Chrome 90.0.4430.85 with multiple security fixes included for its V8 component and a few others. As a result of the active exploitation of CVE-2021-21224, it is important to ensure your Chrome browser has been updated to the latest version.
In the Google advisory, five vulnerabilities were disclosed and fixed in this latest version: CVE-2021-21222 heap buffer overflow in V8, CVE-2021-21223 integer overflow in Mojo, CVE-2021-21225 out of bounds memory access in V8, CVE-2021-21226 use after free in navigation, and CVE-2021-21224 type confusion in V8. The last one being the most severe as it has been actively exploited. You can find more info in the Google Chrome Execute Arbitrary Code vulnerabilities blog.
Run our Chrome 90 report query to find all outdated Google Chrome installations
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(SubString(tblSoftware.softwareVersion, 0, 3) As INT) > 90 Then 'Up to date' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 90 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) > 4430 Then 'Up to date' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 90 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) = 4430 And Cast(SubString(tblSoftware.softwareVersion, 11, 4) As INT) >= 85 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(SubString(tblSoftware.softwareVersion, 0, 3) As INT) > 90 Then '#d4f4be' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 90 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) > 4430 Then '#d4f4be' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 90 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) = 4430 And Cast(SubString(tblSoftware.softwareVersion, 11, 4) As INT) >= 85 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'