No description
Find a file
2026-01-15 23:39:54 +05:30
.cursor/rules Improve Cursor rules for testing (#8717) 2025-12-02 09:21:22 -08:00
.github Remove test_older_macos job in GitHub Actions because runner has been removed (#8729) 2025-12-10 16:45:45 -08:00
cmake build: Cleanups and fixes for a newer clang toolchain (#8412) 2024-09-09 18:45:00 +02:00
docs Add support for gzip content-encoding in HTTP client (#8731) 2025-12-17 16:21:54 -08:00
external logger: Add new string_batch request type to compliment existing string type (#8027) 2023-06-03 13:04:44 -04:00
libraries build: suppress enum-constexpr-conversion error for boost mpl on macos (#8742) 2026-01-15 23:39:54 +05:30
osquery Fix SMBIOS CPU count (#8737) 2026-01-06 08:41:10 -08:00
packs Project Documentation/README updates (#8696) 2025-10-22 13:09:40 -04:00
plugins Fix ATC for open Firefox databases (#8631) 2025-07-02 10:38:06 -07:00
specs Fix crash when querying carves table with carves larger than 2GB (#8732) 2025-12-17 16:20:31 -08:00
tests Fix integration test for certificate_trust_settings (#8739) 2026-01-08 09:00:51 -08:00
tools Add support for gzip content-encoding in HTTP client (#8731) 2025-12-17 16:21:54 -08:00
.artifactignore Add sccache to the Windows job (#6231) 2020-02-06 16:07:58 +01:00
.clang-format format: Remove Cpp restriction (#3521) 2017-08-02 10:32:12 -07:00
.cursorignore Add Cursor AI editor configurations (#8656) 2025-07-31 09:04:55 -07:00
.gitignore experiments: Implement a new bpf_process_events_v2 table (#7773) 2023-02-14 19:11:21 +01:00
.gitmodules build: Correct xz submodule url and openssl download url (#8383) 2024-07-29 12:47:40 +02:00
.readthedocs.yml ci: Update python version and docs build tools (#7969) 2023-03-29 10:42:52 +02:00
.watchmanconfig watcher: Do not initialize the config in watcher (#3403) 2017-06-13 17:26:34 -07:00
ASSURANCE.md Docs: mention the recent adoption of automatic CVE scanning (#7878) 2022-12-13 17:01:28 -08:00
CHANGELOG.md Update CHANGELOG to point to Releases page. (#8681) 2025-09-10 23:20:27 +00:00
CMakeLists.txt Added jetbrains_plugins table (#8623) 2025-06-11 16:51:27 -07:00
CODE_OF_CONDUCT.md Fix broken link in CODE_OF_CONDUCT.md (#7922) 2023-01-26 22:42:07 +01:00
CODEOWNERS Fix CODEOWNERS syntax to allow committers and TSC (#6975) 2021-02-27 13:04:00 -05:00
CONTRIBUTING.md Project Documentation/README updates (#8696) 2025-10-22 13:09:40 -04:00
Doxyfile Add clang-format rules from 3.6 (#2360) 2016-08-15 01:33:17 -07:00
LICENSE Clarify licensing (#4792) 2018-08-02 19:26:40 +01:00
LICENSE-Apache-2.0 Clarify licensing (#4792) 2018-08-02 19:26:40 +01:00
LICENSE-GPL-2.0 Clarify licensing (#4792) 2018-08-02 19:26:40 +01:00
mkdocs.yml docs: add very basic file carving documentation (#8118) 2023-08-30 15:49:23 +02:00
README.md Project Documentation/README updates (#8696) 2025-10-22 13:09:40 -04:00
SECURITY.md Docs: add a security assurance case (#7048) 2021-07-12 23:32:09 -04:00
SUPPORT.md docs: Update expired Slack invite (#8488) 2024-12-04 11:24:49 -05:00
Vagrantfile Remove leftover FreeBSD related code and documentation (#7739) 2022-09-27 15:03:22 -04:00

osquery

osquery logo

osquery is a SQL powered operating system instrumentation, monitoring, and analytics framework.
Available for Linux, macOS, and Windows.

Information and resources

What is osquery?

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.

SQL tables are implemented via a simple plugin and extensions API. A variety of tables already exist and more are being written: https://osquery.io/schema. To best understand the expressiveness that is afforded to you by osquery, consider the following SQL queries:

List the users:

SELECT * FROM users;

Check the processes that have a deleted executable:

SELECT * FROM processes WHERE on_disk = 0;

Get the process name, port, and PID, for processes listening on all interfaces:

SELECT DISTINCT processes.name, listening_ports.port, processes.pid
  FROM listening_ports JOIN processes USING (pid)
  WHERE listening_ports.address = '0.0.0.0';

Find every macOS LaunchDaemon that launches an executable and keeps it running:

SELECT name, program || program_arguments AS executable
  FROM launchd
  WHERE (run_at_load = 1 AND keep_alive = 1)
  AND (program != '' OR program_arguments != '');

Check for ARP anomalies from the host's perspective:

SELECT address, mac, COUNT(mac) AS mac_count
  FROM arp_cache GROUP BY mac
  HAVING count(mac) > 1;

Alternatively, you could also use a SQL sub-query to accomplish the same result:

SELECT address, mac, mac_count
  FROM
    (SELECT address, mac, COUNT(mac) AS mac_count FROM arp_cache GROUP BY mac)
  WHERE mac_count > 1;

These queries can be:

  • performed on an ad-hoc basis to explore operating system state using the osqueryi shell
  • executed via a scheduler to monitor operating system state across a set of hosts
  • launched from custom applications using osquery Thrift APIs

Download & Install

To download the latest stable builds and for repository information and installation instructions visit https://osquery.io/downloads.

We use a simple numbered versioning scheme X.Y.Z, where X is a major version, Y is a minor, and Z is a patch. We plan minor releases roughly every two months. These releases are tracked on our Milestones page. A patch release is used when there are unforeseen bugs with our minor release and we need to quickly patch. A rare 'revision' release might be used if we need to change build configurations.

Major, minor, and patch releases are tagged on GitHub and can be viewed on the Releases page. We open a new Release Checklist issue when we prepare a minor release. If you are interested in the status of a release, please find the corresponding checklist issue, and note that the issue will be marked closed when we are finished the checklist. We consider a release 'in testing' during the period of hosting new downloads on our website and adding them to our hosted repositories. We will mark the release as 'stable' on GitHub when enough testing has occurred, this usually takes two weeks.

Build from source

Building osquery from source is encouraged! Check out our build guide. Also check out our contributing guide and join the community on Slack.

Osquery fleet managers

There are many osquery fleet managers out there. The osquery project does not endorse, recommend, or test these. They are provided as a starting point

Project License
Fleet Open Core
Kolide Commercial
OSCTRL Open Source
Zentral Open Source

License

By contributing to osquery you agree that your contributions will be licensed as defined on the LICENSE file.

Vulnerabilities

We keep track of security announcements in our tagged version release notes on GitHub. We aggregate these into SECURITY.md too.

Learn more

The osquery documentation is available online. Documentation for older releases can be found by version number, as well.

If you're interested in learning more about osquery read the launch blog post for background on the project, visit the users guide.

Development and usage discussion is happening in the osquery Slack, grab an invite here!