cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Ben-rutherford
Engaged Sweeper II

Just days after the original Zero-Day fix There is now another! 
This is to fix 8 Vulnerabilities and the zero day flaw known as CVE-2023-2136

Please find my updated report to check versions are a minimum of version 112.0.5615.137.

And details of the news can be found here: https://thehackernews.com/2023/04/google-chrome-hit-by-second-zero-day.html 

 

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) > 112 Then
      'Up to date'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 112 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 5615 Then
      'Up to date'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 112 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 5615 And
      Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 137 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) > 112 Then
      '#d4f4be'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 112 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) > 5615 Then
      '#d4f4be'
    When Cast(ParseName(tblSoftware.softwareVersion, 4) As int) = 112 And
      Cast(ParseName(tblSoftware.softwareVersion, 2) As int) = 5615 And
      Cast(ParseName(tblSoftware.softwareVersion, 1) As int) >= 137 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'

 

 

1 REPLY 1
Mercedes_O
Community Manager
Community Manager

Much appreciated  @Ben-rutherford