- Notifications
You must be signed in to change notification settings - Fork52
Python bindings for osquery's Thrift API
License
osquery/osquery-python
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
osquery exposes an operating system as a high-performance relational database. This allows you to write SQL-based queries to explore operating system data. With osquery, SQL tables represent abstract concepts such as running processes, loaded kernel modules, open network connections, browser plugins, hardware events or file hashes.
If you're interested in learning more about osquery, visit theGitHub project, thewebsite, and theusers guide.
In osquery, SQL tables, configuration retrieval, log handling, etc are implemented via a simple, robust plugin and extensions API. This project contains the official Python bindings for creating osquery extensions in Python. Consider the following example:
#!/usr/bin/env pythonimportosquery@osquery.register_pluginclassMyTablePlugin(osquery.TablePlugin):defname(self):return"foobar"defcolumns(self):return [osquery.TableColumn(name="foo",type=osquery.STRING),osquery.TableColumn(name="baz",type=osquery.STRING), ]defgenerate(self,context):query_data= []for_inrange(2):row= {}row["foo"]="bar"row["baz"]="baz"query_data.append(row)returnquery_dataif__name__=="__main__":osquery.start_extension(name="my_awesome_extension",version="1.0.0")
To test this code start an osquery shell:
osqueryi --nodisable_extensionsosquery> select value from osquery_flags where name = 'extensions_socket';+-----------------------------------+| value |+-----------------------------------+| /Users/USERNAME/.osquery/shell.em |+-----------------------------------+Then start the Python extension:
python ./my_table_plugin.py --socket /Users/USERNAME/.osquery/shell.emAlternatively, you can also autoload your extension when starting an osquery shell:
osqueryi --extension path_to_my_table_plugin.pyThis will register a table called "foobar". As you can see, the table will return two rows:
osquery> select * from foobar;+-----+-----+| foo | baz |+-----+-----+| bar | baz || bar | baz |+-----+-----+osquery>This is obviously a contrived example, but it's easy to imagine the possibilities.
Using the instructions found on thewiki, you can easily deploy your extension with an existing osquery deployment.
Extensions are the core way that you can extend and customize osquery. At Facebook, we use extensions extensively to implement many plugins that take advantage of internal APIs and tools.
The same Thrift bindings can be used to create a Python client for theosqueryd orosqueryi's extension socket. There are helper classes provided that spawn an ephemeral osquery process for consecutive or long running client instances.
importosqueryif__name__=="__main__":# Spawn an osquery process using an ephemeral extension socket.instance=osquery.SpawnInstance()instance.open()# This may raise an exception# Issues queries and call osquery Thrift APIs.instance.client.query("select timestamp from time")
In the example above theSpawnInstance() method is used to fork and configure an osquery instance. We can use similar APIs to connect to the Thrift socket of an existing osquery instance. Remember, normal UNIX permissions apply to the Thrift socket.
Imagine if you startedosqueryd:
$ osqueryd --ephemeral --disable_logging --disable_database \ --extensions_socket /home/you/.osquery/osqueryd.sock&Then use the Python bindings:
importosqueryif__name__=="__main__":# You must know the Thrift socket path# For an installed and running system osqueryd, this is:# Linux and macOS: /var/osquery/osquery.em# FreeBSD: /var/run/osquery.em# Windows: \\.\pipe\osquery.eminstance=osquery.ExtensionClient('/home/you/.osquery/osqueryd.sock')instance.open()# This may raise an exception# Issue queries and call osquery Thrift APIs.client=instance.extension_client()client.query('select timestamp from time')
To install from PyPi, run the following:
pip install osqueryAlternatively, to install from this repo, run the following:
python setup.py buildpython setup.py installSeeCONTRIBUTING.md and theosquery wiki for development information.
- Pick a version number
- Update
osquery/__init__.pyto match - Use the GitHub release
- Make sure the GitHub Action ran
Facebook has abug bounty program that includes osquery. If you find a security vulnerability in osquery, please submit it via the process outlined on that page and do not file a public issue. For more information on finding vulnerabilities in osquery, see a recent blog post aboutbug-hunting osquery.
About
Python bindings for osquery's Thrift API
Resources
License
Code of conduct
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
