https://github.com/osquery/osquery logo
#general
Title
# general
p

Prateek Kumar Nischal

03/12/2020, 2:56 PM
Hello team, I need to write an extension for osquery, and I will be using kolide/osquery-go to register tables and config plugins, Is there a way to get access to the flags that was passed to the osqueryd daemon via osquery.flags ?
s

seph

03/12/2020, 3:05 PM
Query the osquery_flags table. But if you're trying to add options, I thjnk there's a config section for it
p

Prateek Kumar Nischal

03/12/2020, 3:06 PM
I will be writing a custom config plugin, would it be possible to query the
osquery_flags
before the config is loaded .. ? Let me give it a try anyways
ok.. so I can perform a query before registering the new plugin..
s

seph

03/12/2020, 3:12 PM
I don't think so. The config will be loaded by then, I'm. It sure you can get at the flags without config parsing. (Well, you could use the process table)
p

Prateek Kumar Nischal

03/12/2020, 3:20 PM
I was able to get one of the flags that was passed to the daemon from the extension..
Copy code
[map[default_value:false description:Allow unsafe executable permissions name:allow_unsafe shell_only:0 type:bool value:true]]
output in the logs from osqueryd when running like:
Copy code
./osqueryd --config_path /tmp/config.json --allow_unsafe --disable_extensions=false --extensions_autoload=/tmp/extensions.load --verbose
with
Copy code
client, err := osquery.NewClient("/var/osquery/osquery.em", 10*time.Second)
defer client.Close()

resp, err := client.Query("select * from osquery_flags where name=\"allow_unsafe\";")
fmt.Println(resp.GetResponse())
4 Views