Downloads:
1,308,990
Downloads of v 2.2.1-gd6630be:
504
Last Update:
27 Dec 2016
Package Maintainer(s):
Software Author(s):
Tags:
infosec toolsosquery
This is a prerelease version of osquery.
- 1
- 2
- 3
2.2.1-gd6630be | Updated: 27 Dec 2016
Downloads:
1,308,990
Downloads of v 2.2.1-gd6630be:
504
Software Author(s):
osquery 2.2.1-gd6630be
This is a prerelease version of osquery.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Facebook. The inclusion of Facebook trademark(s), if any, upon this webpage is solely to identify Facebook goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install osquery, run the following command from the command line or from PowerShell:
To upgrade osquery, run the following command from the command line or from PowerShell:
To uninstall osquery, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download osquery --internalize --version=2.2.1-gd6630be --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade osquery -y --source="'INTERNAL REPO URL'" --version="'2.2.1-gd6630be'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade osquery -y --source="'INTERNAL REPO URL'" --version="'2.2.1-gd6630be'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install osquery
win_chocolatey:
name: osquery
version: '2.2.1-gd6630be'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'osquery' do
action :install
source 'INTERNAL REPO URL'
version '2.2.1-gd6630be'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller osquery
{
Name = "osquery"
Version = "2.2.1-gd6630be"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'osquery':
ensure => '2.2.1-gd6630be',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
osquery allows you to easily ask questions about your Linux, OSX, and
Windows infrastructure. Whether your goal is intrusion detection,
infrastructure reliability, or compliance, osquery gives you the ability
to empower and inform a broad set of organizations within your company.
### Package Parameters
* /InstallService
- This creates a new windows service that will auto-start the daemon.
These parameters can be passed to the installer with the user of -params
.
For example: -params '"/InstallService"'
.
md5: B40BAAD2523A6712BFEC455E3EF1DB61 | sha1: C66D865D3AA1A7006C1D5567613A5C6B6AA597A9 | sha256: 82C1D49054F9B7203B7AEA71C25EB81E8D6B7476C8821D887B622F4A2AA7118B | sha512: 9C2F6EE0FCF4BFADF05D8B9C493FE33D9A8C9641EF00D746EE2E3C846B060E38C9AB02F01E3C104E4B8A040099D448E52358A3C82CA2F72737215B448A3061E0
function Remove-DenyWriteAcl {
[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact="Medium")]
param(
[string] $targetDir = ''
)
if($PSCmdlet.ShouldProcess($targetDir)){
$acl = Get-Acl $targetDir
$inheritanceFlag = [System.Security.AccessControl.InheritanceFlags]::ContainerInherit -bor [System.Security.AccessControl.InheritanceFlags]::ObjectInherit
$propagationFlag = [System.Security.AccessControl.PropagationFlags]::None
$permType = [System.Security.AccessControl.AccessControlType]::Deny
$permission = "everyone","write",$inheritanceFlag,$propagationFlag,$permType
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule $permission
$acl.RemoveAccessRule($accessRule)
$acl | Set-Acl $targetDir
}
}
$serviceName = 'osqueryd'
$progData = [System.Environment]::GetEnvironmentVariable('ProgramData')
$targetFolder = Join-Path $progData "osquery"
$daemonFolder = Join-Path $targetFolder $serviceName
# Before modifying we ensure to stop the service, if it exists
if ((Get-Service $serviceName -ErrorAction SilentlyContinue) -and (Get-Service $serviceName).Status -eq 'Running') {
Stop-Service $serviceName
}
# Lastly, ensure that the Deny Write ACLs have been removed before modifying
if (Test-Path $daemonFolder) {
Remove-DenyWriteAcl $daemonFolder
}
$progData = [System.Environment]::GetEnvironmentVariable('ProgramData')
$targetFolder = Join-Path $progData "osquery"
$serviceName = 'osqueryd'
# Remove the osquery path from the System PATH variable. Note: Here
# we don't make use of our local vars, as Regex requires escaping the '\'
$oldPath = [System.Environment]::GetEnvironmentVariable('Path', 'User')
if ($oldPath -imatch [regex]::escape($targetFolder)) {
$newPath = $oldPath -replace [regex]::escape($targetFolder),$NULL
[System.Environment]::SetEnvironmentVariable('Path', $newPath, 'User')
}
if ((Get-Service $serviceName -ErrorAction SilentlyContinue)) {
Stop-Service $serviceName
Set-Service $serviceName -startuptype 'manual'
Get-CimInstance -ClassName Win32_Service -Filter "Name='osqueryd'" | Invoke-CimMethod -methodName Delete
}
if (Test-Path $targetFolder) {
Remove-Item -Force -Recurse $targetFolder
if(Test-Path $targetFolder) {
Write-Output 'osquery uninstallation was unsuccessful.'
} else {
Write-Output 'osquery was uninstalled successfully.'
}
} else {
Write-Output 'osquery was not found on the system. Nothing to do.'
}
Log in or click on link to see number of positives.
- osquery.2.2.1-gd6630be.nupkg (0b689bc569a1) - ## / 56
- osquery.zip (82c1d49054f9) - ## / 57
- osqueryd.exe (90d74d74e734) - ## / 56
- osqueryi.exe (583ca0837aeb) - ## / 56
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
osquery 5.11.0 | 149666 | Thursday, January 25, 2024 | Approved | |
osquery 5.10.2 | 286 | Thursday, January 25, 2024 | Approved | |
osquery 5.9.1 | 59 | Thursday, January 25, 2024 | Approved | |
osquery 5.8.2 | 116608 | Friday, May 12, 2023 | Approved | |
osquery 5.7.0 | 22952 | Tuesday, March 28, 2023 | Approved | |
osquery 5.6.0 | 566 | Tuesday, March 28, 2023 | Approved | |
osquery 5.5.1 | 48185 | Saturday, January 7, 2023 | Approved | |
osquery 5.4.0 | 95132 | Thursday, September 8, 2022 | Approved | |
osquery 5.3.0 | 908 | Thursday, September 8, 2022 | Approved | |
osquery 5.2.3 | 284 | Thursday, September 8, 2022 | Approved | |
osquery 5.2.2 | 144662 | Tuesday, March 15, 2022 | Approved | |
osquery 5.2.1 | 40083 | Tuesday, January 25, 2022 | Approved | |
osquery 5.2.0 | 17310 | Thursday, January 6, 2022 | Approved | |
osquery 5.1.0 | 341 | Thursday, January 6, 2022 | Approved | |
osquery 5.0.1 | 122464 | Thursday, September 16, 2021 | Approved | |
osquery 4.9.0 | 1232 | Wednesday, September 15, 2021 | Approved | |
osquery 4.8.0 | 32326 | Monday, May 3, 2021 | Approved | |
osquery 4.7.0 | 4251 | Tuesday, April 20, 2021 | Approved | |
osquery 4.6.0.2 | 16272 | Friday, February 12, 2021 | Approved | |
osquery 4.5.1 | 20340 | Monday, November 9, 2020 | Approved | |
osquery 4.5.0 | 10286 | Thursday, October 1, 2020 | Approved | |
osquery 4.4.0 | 13135 | Friday, July 31, 2020 | Approved | |
osquery 4.3.0 | 21008 | Saturday, May 9, 2020 | Approved | |
osquery 4.2.0 | 29344 | Tuesday, February 25, 2020 | Approved | |
osquery 4.0.2 | 58645 | Friday, September 13, 2019 | Approved | |
osquery 4.0.1 | 626 | Wednesday, September 11, 2019 | Approved | |
osquery 3.4.0 | 9908 | Thursday, May 23, 2019 | Approved | |
osquery 3.3.2 | 123606 | Monday, January 28, 2019 | Approved | |
osquery 3.3.1 | 43689 | Tuesday, October 2, 2018 | Approved | |
osquery 3.3.0 | 3372 | Monday, August 20, 2018 | Approved | |
osquery 3.2.9 | 74835 | Monday, July 2, 2018 | Approved | |
osquery 3.2.6 | 52881 | Monday, July 2, 2018 | Approved | |
osquery 3.2.4 | 3160 | Friday, May 4, 2018 | Approved | |
osquery 2.11.2 | 5794 | Monday, February 5, 2018 | Approved | |
osquery 2.11.0 | 2100 | Friday, January 12, 2018 | Approved | |
osquery 2.10.4 | 1911 | Sunday, December 3, 2017 | Approved | |
osquery 2.10.2 | 1169 | Thursday, November 16, 2017 | Approved | |
osquery 2.9.0 | 2574 | Friday, October 20, 2017 | Approved | |
osquery 2.8.0 | 1418 | Wednesday, September 27, 2017 | Approved | |
osquery 2.7.0 | 1526 | Wednesday, August 23, 2017 | Approved | |
osquery 2.6.1 | 993 | Sunday, August 6, 2017 | Approved | |
osquery 2.6.0 | 687 | Friday, July 28, 2017 | Approved | |
osquery 2.5.0 | 4708 | Tuesday, June 20, 2017 | Approved | |
osquery 2.4.2 | 1518 | Tuesday, May 9, 2017 | Approved | |
osquery 2.4.0 | 912 | Saturday, April 15, 2017 | Approved | |
osquery 2.3.2 | 1586 | Thursday, February 16, 2017 | Approved | |
osquery 2.2.1 | 858 | Thursday, December 22, 2016 | Approved | |
osquery 2.2.1-gd6630be | 504 | Tuesday, December 27, 2016 | Exempted | |
osquery 2.2.0 | 566 | Tuesday, December 13, 2016 | Approved | |
osquery 2.1.1 | 740 | Thursday, November 3, 2016 | Approved | |
osquery 2.0.0 | 794 | Tuesday, October 11, 2016 | Approved |
Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about osquery and the osquery package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or osquery, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.