osquery-1/README.md

124 lines
5.7 KiB
Markdown
Raw Normal View History

2014-07-31 00:35:19 +00:00
osquery
=======
<p align="center">
<img align="center" src="https://osquery.io/assets/logo-dark.png" alt="osquery logo" width="200"/>
<p align="center">
2015-04-06 08:34:39 +00:00
osquery is an operating system instrumentation framework for OS X and Linux. <br/>
The tools make low-level operating system analytics and monitoring both performant and intuitive.
2015-04-06 08:34:39 +00:00
| Platform | Build status | | | |
|----------|---------------|---|---|---|
2015-05-12 06:31:13 +00:00
RHEL 6.5 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildRHEL6Package/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildRHEL6Package/) | | |
RHEL 7.0 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildRHEL7Package/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildRHEL7Package/) | | **Homepage:** | https://osquery.io
CentOS 6.5 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildCentOS6Package/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildCentOS6Package/) | | **Downloads:** | https://osquery.io/downloads
CentOS 7.0 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildCentOS7Package/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildCentOS7Package/) | | **Tables:** | https://osquery.io/tables
Ubuntu 12.04 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildUbuntu12Package/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildUbuntu12Package/) | | **Guide:** | https://osquery.readthedocs.org
Ubuntu 14.04 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildUbuntu14Package/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildUbuntu14Package/) | | **Homebrew:** | `brew install osquery`
2015-05-12 06:31:13 +00:00
OS X 10.10 | [![Build Status](https://jenkins.osquery.io/job/osqueryMasterBuildOSXPackage/badge/icon)](https://jenkins.osquery.io/job/osqueryMasterBuildOSXPackage/) | | |
#### What is osquery?
2014-08-12 00:51:30 +00:00
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.
2014-09-03 08:42:15 +00:00
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/tables](https://osquery.io/tables). To best understand the expressiveness that is afforded to you by osquery, consider the following SQL queries:
2014-09-03 08:42:15 +00:00
2015-04-06 08:34:39 +00:00
List the the users:
```sql
SELECT * FROM users;
```
2014-10-29 00:36:22 +00:00
Check the processes that have a deleted executable:
```sql
SELECT * FROM processes WHERE on_disk = 0;
```
2014-09-03 08:42:15 +00:00
Get the process name, port, and PID, which are listening on all interfaces:
2014-09-03 08:42:15 +00:00
```sql
SELECT DISTINCT process.name, listening.port, process.pid
2014-09-03 08:42:15 +00:00
FROM processes AS process
JOIN listening_ports AS listening ON process.pid = listening.pid
2014-09-03 08:42:15 +00:00
WHERE listening.address = '0.0.0.0';
```
2014-11-04 16:59:46 +00:00
Find every OS X LaunchDaemon that launches an executable and keeps it running:
2014-09-03 08:42:15 +00:00
```sql
SELECT name, program || program_arguments AS executable
2014-11-04 16:59:46 +00:00
FROM launchd
WHERE
(run_at_load = 'true' AND keep_alive = 'true')
AND
2014-09-03 08:42:15 +00:00
(program != '' OR program_arguments != '');
```
Check for ARP anomalies from the host's perspective:
```sql
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:
```sql
SELECT address, mac, mac_count
FROM
(SELECT address, mac, count(mac) AS mac_count FROM arp_cache GROUP BY mac)
WHERE mac_count > 1;
```
2014-09-03 08:42:15 +00:00
These queries can be:
* performed on an ad-hoc basis to explore operating system state using the [osqueryi](https://osquery.readthedocs.org/en/latest/introduction/using-osqueryi/) shell
* executed via a [scheduler](https://osquery.readthedocs.org/en/latest/introduction/using-osqueryd/) to monitor operating system state across a set of hosts
* launched from custom applications using osquery Thrift APIs
2014-09-03 08:42:15 +00:00
#### Downloads / Install
For latest stable and nightly builds for OS X and Linux (deb/rpm), as well as yum and apt repository information visit [https://osquery.io/downloads](https://osquery.io/downloads/).
2014-11-03 09:41:30 +00:00
##### FreeBSD
The easiest way to install osquery on FreeBSD is via the ports tree. Check [FreshPorts](http://www.freshports.org/sysutils/osquery) for the latest version information.
```bash
# from ports
cd /usr/ports/sysutils/osquery && make install clean
# from binary package
pkg install osquery
# using portmaster
portmaster sysutils/osquery
```
##### OS X (Homebrew)
2014-11-03 09:41:30 +00:00
The easiest way to install osquery on OS X is via Homebrew. Check the [Homebrew](http://brew.sh/) homepage for installation instructions.
2014-11-03 09:41:30 +00:00
```bash
# if you've never installed osquery
2014-11-03 09:41:30 +00:00
brew update
brew install osquery
# don't forget to update osquery!
brew update
2014-11-03 09:41:30 +00:00
brew upgrade osquery
```
##### Building from source
2014-11-03 09:50:31 +00:00
[Building](https://osquery.readthedocs.org/en/latest/development/building/) osquery from source is encouraged! Join our developer community by giving us feedback in Github issues or submitting pull requests!
#### Vulnerabilities
Facebook has a [bug bounty](https://www.facebook.com/whitehat/) 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 about [bug-hunting osquery](https://www.facebook.com/notes/facebook-bug-bounty/bug-hunting-osquery/954850014529225).
#### Learn more
2014-08-12 00:51:30 +00:00
2014-10-29 18:18:35 +00:00
Read the [launch blog post](https://code.facebook.com/posts/844436395567983/introducing-osquery/) for background on the project.
If you're interested in learning more about osquery, visit the [users guide](https://osquery.readthedocs.org/) and browse our RFC-labeled Github issues.