mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
#18808 Added the new `sofa_security_release_info` and `sofa_unpatched_cves` tables from `macadmins/osquery-extension` 1.0.1 These tables do not have detailed documentation in macadmins repo, so not adding documentation at this point. # Checklist for submitter <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [x] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. - [x] Auto-update manual QA, from released version of component to new version (see [tools/tuf/test](../tools/tuf/test/README.md)).
19 lines
651 B
Go
19 lines
651 B
Go
//go:build linux
|
|
|
|
package table
|
|
|
|
import (
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/crowdstrike/falcon_kernel_check"
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/crowdstrike/falconctl"
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/cryptsetup"
|
|
|
|
"github.com/osquery/osquery-go"
|
|
)
|
|
|
|
func PlatformTables(_ PluginOpts) []osquery.OsqueryPlugin {
|
|
return []osquery.OsqueryPlugin{
|
|
cryptsetup.TablePlugin(osqueryLogger), // table name is "cryptsetup_status"
|
|
falconctl.NewFalconctlOptionTable(osqueryLogger), // table name is "falconctl_option"
|
|
falcon_kernel_check.TablePlugin(osqueryLogger), // table name is "falcon_kernel_check"
|
|
}
|
|
}
|