├── .circleci └── config.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── config ├── osquery.conf └── osquery.flags ├── default ├── app.conf ├── eventtypes.conf ├── inputs.conf ├── props.conf ├── tags.conf └── transforms.conf ├── metadata └── default.meta └── static ├── appIcon.png ├── appIconAlt.png ├── appIconAlt_2x.png ├── appIcon_2x.png └── splunk_logo.png /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/README.md -------------------------------------------------------------------------------- /config/osquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/config/osquery.conf -------------------------------------------------------------------------------- /config/osquery.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/config/osquery.flags -------------------------------------------------------------------------------- /default/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/default/app.conf -------------------------------------------------------------------------------- /default/eventtypes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/default/eventtypes.conf -------------------------------------------------------------------------------- /default/inputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/default/inputs.conf -------------------------------------------------------------------------------- /default/props.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/default/props.conf -------------------------------------------------------------------------------- /default/tags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/default/tags.conf -------------------------------------------------------------------------------- /default/transforms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/default/transforms.conf -------------------------------------------------------------------------------- /metadata/default.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/metadata/default.meta -------------------------------------------------------------------------------- /static/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/static/appIcon.png -------------------------------------------------------------------------------- /static/appIconAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/static/appIconAlt.png -------------------------------------------------------------------------------- /static/appIconAlt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/static/appIconAlt_2x.png -------------------------------------------------------------------------------- /static/appIcon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/static/appIcon_2x.png -------------------------------------------------------------------------------- /static/splunk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/TA-osquery/HEAD/static/splunk_logo.png --------------------------------------------------------------------------------