Detect whether the chassis intrusion detection system has been triggered, indicating possible tampering with hardware. When a motherboard has the chassis intrusion system enabled, Lansweeper will scan the status of this system. When the system is triggered by someone opening the chassis of the computer or server, Lansweeper will scan this change and the audit will display which asset has been breached. This functionality can help with the physical security of IT equipment.
Chassis Intrusion Detected Query
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tsysOS.OSname,
tblAssets.Description,
tblComputersystem.Lastchanged,
tsysOS.Image As icon
From tblAssets
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblComputersystem.ChassisBootupState > 3 And tblAssetCustom.State = 1
Order By tblAssets.AssetName