Security
device.txt
Associated article: Device Trails
Tags: .NET Security Embedded Systems
Published source code accompanying the article by Ziv Gutterman and Avner Rosenan in which they examine how modern hardware devices contain information that assists the operating system in finding appropriate drivers--and intruders in finding out who was doing what when.
Device Trails
by Zvi Gutteman and Avner Rosenan
Example 1:
// Get access to all USB devices on remote machine
HDEVINFO deviceClassInfo =
SetupDiGetClassDevsEx(NULL, "USB", 0,
DIGCF_ALLCLASSES,0, "192.168.24.81", NULL);
SP_DEVINFO_DATA deviceData;
char buffer[BUFFER_SIZE];
int index=0;
// ...


