Using osquery sdk (in the form of dll) on Windows

384 Views Asked by At

i am trying to use osquery sdk on Windows. Does it has any dll which can be loaded in my process. It's not very clear from the documentation. Any pointers will help.

1

There are 1 best solutions below

2
On

osquery is generally meant to be used as a daemon (or service), which collects data. This data can either be logged locally, or sent to a remote server.

osquery supports extensions. These extensions use the osquery SDK. osquery also supports some interaction over a thrift socket, this can also use the SDK.

osquery is generally not embedded.