
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2018 10:45 AM
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!
- Labels:
-
Report Center

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2019 06:19 PM
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?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-15-2018 11:13 PM
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
