mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
d4a3fe2452
Preparation for Windows Tables. We need a Windows process table so that the daemon will run
14 lines
668 B
Plaintext
14 lines
668 B
Plaintext
table_name("usb_devices")
|
|
description("USB devices that are actively plugged into the host system.")
|
|
schema([
|
|
Column("usb_address", INTEGER, "USB Device used address"),
|
|
Column("usb_port", INTEGER, "USB Device used port"),
|
|
Column("vendor", TEXT, "USB Device vendor string"),
|
|
Column("vendor_id", TEXT, "Hex encoded USB Device vendor identifier"),
|
|
Column("model", TEXT, "USB Device model string"),
|
|
Column("model_id", TEXT, "Hex encoded USB Device model identifier"),
|
|
Column("serial", TEXT, "USB Device serial connection"),
|
|
Column("removable", INTEGER, "1 If USB device is removable else 0"),
|
|
])
|
|
implementation("usb_devices@genUSBDevices")
|