cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
atimkayev
Engaged Sweeper
Dear friends,

Could you help me to create a report for LanSweeper with list of host names which affected by vulnerability MouseJack ?

Thanks in advance for your help!
2 REPLIES 2
Viper
Engaged Sweeper II
atimkayev wrote:
Dear friends,

Could you help me to create a report for LanSweeper with list of host names which affected by vulnerability MouseJack ?

Thanks in advance for your help!



It looks like this is still an issue and new vulnerabilities have been discovered

It doesn't look like Logitech is much help for enterprise environments.
Any suggestions on how to scan for vulnerable hardware?
AZHockeyNut
Champion Sweeper III
so the strategy would seem to me to be having to identify them by device type, as well as either part# or description etc. from the article it might be tough. did you have a thought on how to do it?
Since I don't have those (that I could tell) I am not sure how they show up in your inventory.
Here is a guess at the report quick and dirty for ya.


Select Top 1000000
tblAssets.AssetID,
tblAssets.AssetName,
tblAssetCustom.Model,
tblAssetCustom.Location,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblPointingDevice.caption,
tblPointingDevice.Manufacturer

From tblAssetCustom
Inner Join tblAssets On tblAssetCustom.AssetID = tblAssets.AssetID
inner join [tblPointingDevice] on tblPointingDevice.assetid = tblassets.AssetID
Where tblPointingDevice.Manufacturer like '%Microsoft%' or tblPointingDevice.Manufacturer like '%dell%'or tblPointingDevice.Manufacturer like '%gigabyte%'
or tblPointingDevice.Manufacturer like '%AmazonBasics%'or tblPointingDevice.Manufacturer like'%hp%'or tblPointingDevice.Manufacturer like '%Lenovo%'or tblPointingDevice.Manufacturer like'%logitech%'
and tblPointingDevice.caption like '%mouse%' And tblAssetCustom.State = 1
Order By tblAssets.AssetName