Find All Outdated Intel Processor Diagnostic Tool Installations
Intel’s Intel-SA-00268 security advisory warns about outdated Intel Processor Diagnostic Tool installations that can be exploited in multiple ways to attack a network (CVE-2019-11133). To check if Intel’s Processor Diagnostic Tool is installed in your network and is up to date, you can run the audit below to get a color-coded overview of all Intel Processor Diagnostic Tool installations and their versions. This way you can find and update outdated installations easily.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysAssetTypes.AssetTypename As AssetType,
tblAssets.Username,
tblAssets.Userdomain,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
Case
When tblSoftware.softwareVersion >= '4.1.2.24' And
tblSoftwareUni.softwareName Like 'Intel Processor Diagnostic Tool%' Then 'Up to date'
Else 'Out of date'
End As [Patch Status],
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblSoftware.Lastchanged,
tblAssets.Lastseen,
tblAssets.Lasttried,
Case
When tblSoftware.softwareVersion >= '4.1.2.24'
AND tblSoftwareUni.softwareName Like 'Intel Processor Diagnostic Tool%' 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 'Intel Processor Diagnostic Tool%' And tblState.Statename =
'Active'