PuTTY released a new version which fixes some high-severity issues. To help you update your putty installations, I've created a color-coded report to check if your PuTTY installations are up-to-date.
This report will display all assets that have PuTTY installed, if they are version 0.71 or higher they will be marked green, otherwise they will be marked red. Only Active assets are included in the report.
If needed you can go to this topic to learn how to run this report in Lansweeper: https://www.lansweeper.com/forum/yaf_postst9882_How-to-run-a-report.aspx#post38309
You can also download the related deployment package here: https://www.lansweeper.com/forum/yaf_postsm57824_PuTTY-0-71.aspx
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysAssetTypes.AssetTypename As AssetType,
tblAssets.Username,
tblAssets.Userdomain,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
Case
When tblSoftware.softwareVersion < '0.71.0.0' Then 'Out of date'
Else 'Up to date'
End As [Patch Status],
tblAssets.Lastseen,
tblAssets.Lasttried,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
tblSoftware.Lastchanged,
Case
When tblSoftware.softwareVersion < '0.71.0.0' Then '#ffadad'
Else '#d4f4be'
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 '%putty%' And tblState.Statename =
'Active'
Order By tblAssets.Domain,
tblAssets.AssetName