Chrome 79 Audit
Security Software VulnerabilityFind Outdated Google Chrome Installations in Your Network
Google released Chrome 79 with a number of new features and also a list of 51 fixed security vulnerabilities. Google improved the phishing protection, they added a compromised password alert and the use of TSL 1.0 and 1.1 are now marked as not secure. Additionally, one of the most important security fixes is related to the so-called «Operation WizardOpium». A combination of a Windows and Chrome vulnerability that allows attackers to remotely control affected computers. You can find more information about this update in the Google Chrome 79 update blog post. Start your Chrome 79 audit!
The audit below will give you a list of all devices with Chrome installation on them. Additionally, it shows whether those installations are on version 79 or not so you can easily find machines that are out of date and pose a security risk. This way, you can update all the Google Chrome installations within your IT network before it is too late. Run the Chrome 79 audit now.Google Chrome 79 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) > 79 Then 'Up to date' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 79 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) > 3945 Then 'Up to date' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 79 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) = 3945 And Cast(SubString(tblSoftware.softwareVersion, 11, 4) As INT) >= 79 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) > 79 Then '#d4f4be' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 79 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) > 3945 Then '#d4f4be' When Cast(SubString(tblSoftware.softwareVersion, 0, 3) As INT) = 79 And Cast(SubString(tblSoftware.softwareVersion, 6, 4) As INT) = 3945 And Cast(SubString(tblSoftware.softwareVersion, 11, 4) As INT) >= 79 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 tblState.Statename = 'Active'