mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
11 lines
434 B
Plaintext
11 lines
434 B
Plaintext
table_name("cpuid")
|
|
description("Useful CPU features from the cpuid ASM call.")
|
|
schema([
|
|
Column("feature", TEXT, "Present feature flags"),
|
|
Column("value", TEXT, "Bit value or string"),
|
|
Column("output_register", TEXT, "Register used to for feature value"),
|
|
Column("output_bit", INTEGER, "Bit in register value for feature value"),
|
|
Column("input_eax", TEXT, "Value of EAX used"),
|
|
])
|
|
implementation("cpuid@genCPUID")
|