From 6fe6200ed6911a5cfd43bd9aa35b8a3a84f90c3d Mon Sep 17 00:00:00 2001 From: "Ahmad M. Zawawi" Date: Sun, 19 Dec 2021 19:11:42 +0200 Subject: [PATCH] osquery: Add version 5.0.1 (#3105) * Add osquery 5.0.1 * Add bin entry for osqueryd. Added website checksum in autoupdate and removed inconsistent extract_dir * Remove website hash from autoupdate as it is not allowed there * Update osquery.json Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> --- bucket/osquery.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 bucket/osquery.json diff --git a/bucket/osquery.json b/bucket/osquery.json new file mode 100644 index 0000000000..b39bebc56e --- /dev/null +++ b/bucket/osquery.json @@ -0,0 +1,32 @@ +{ + "version": "5.0.1", + "description": "SQL powered operating system instrumentation, monitoring, and analytics", + "homepage": "https://osquery.io/", + "license": "Apache-2.0,GPL-2.0-only", + "architecture": { + "64bit": { + "url": "https://github.com/osquery/osquery/releases/download/5.0.1/osquery-5.0.1.msi", + "hash": "cbf71e82956562eb51bd0c18578508e96fa409873fd0da4c34dd91aec238d252" + } + }, + "extract_dir": "osquery", + "bin": [ + "osqueryi.exe", + "osqueryd\\osqueryd.exe" + ], + "checkver": { + "github": "https://github.com/osquery/osquery" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/osquery/osquery/releases/download/$version/osquery-$version.msi" + } + } + }, + "notes": [ + "To set permissions for and install the osqueryd as a service, use the", + "included osquery_utils.ps1 and manage-osqueryd.ps1 scripts. Check docs at", + "https://osquery.readthedocs.io/en/stable/installation/install-windows" + ] +}