Chrome 80 Audit
Security Software VulnerabilityFind Outdated Google Chrome Installations in Your Network
Google released Chrome 80 with a variety of new features and also 56 fixed security vulnerabilities. Google added a new secure-by-default cookie classification system, auto-upgraded mixed content, text URL fragments, SVG favicons and more. You can find more information about this update in the Google Chrome 80 update blog post. Start your Chrome 80 audit!
The audit you can find below gives you an overview of all Google Chrome installations. It also indicates which devices have an outdated Chrome version and which of your assets are still up to date. Find out which assets still need to updated and secure your IT environment. Run the Chrome 80 audit now to find out which of your devices need an update.Google Chrome 80 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(SubString(tblSoftware.softwareVersion, 0, 3) As INT) > 80 Then 'Up to date' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 80 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) > 3987 Then 'Up to date' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 80 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) = 3987 And Cast(SubString(tblSoftware.softwareVersion, 11, 4) As INT) >= 87 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) > 80 Then '#d4f4be' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 80 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) > 3987 Then '#d4f4be' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 80 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) = 3987 And Cast(SubString(tblSoftware.softwareVersion, 11, 4) As INT) >= 87 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'