mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
14 lines
404 B
Plaintext
14 lines
404 B
Plaintext
table_name("usb_devices")
|
|
description("USB devices that are actively plugged into the host system.")
|
|
schema([
|
|
Column("usb_address", INTEGER),
|
|
Column("usb_port", INTEGER),
|
|
Column("vendor", TEXT),
|
|
Column("vendor_id", TEXT),
|
|
Column("model", TEXT),
|
|
Column("model_id", TEXT),
|
|
Column("serial", TEXT),
|
|
Column("removable", INTEGER),
|
|
])
|
|
implementation("usb_devices@genUSBDevices")
|