Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
apps
macOS applications installed in known search paths (e.g., /Applications).
Column | Type | Description |
---|---|---|
applescript_enabled | text | Info properties NSAppleScriptEnabled label |
bundle_executable | text | Info properties CFBundleExecutable label |
bundle_identifier | text | Info properties CFBundleIdentifier label |
bundle_name | text | Info properties CFBundleName label |
bundle_package_type | text | Info properties CFBundlePackageType label |
bundle_short_version | text | Info properties CFBundleShortVersionString label |
bundle_version | text | Info properties CFBundleVersion label |
category | text | The UTI that categorizes the app for the App Store |
compiler | text | Info properties DTCompiler label |
copyright | text | Info properties NSHumanReadableCopyright label |
development_region | text | Info properties CFBundleDevelopmentRegion label |
display_name | text | Info properties CFBundleDisplayName label |
element | text | Does the app identify as a background agent |
environment | text | Application-set environment variables |
info_string | text | Info properties CFBundleGetInfoString label |
last_opened_time | double | The time that the app was last used |
minimum_system_version | text | Minimum version of macOS required for the app to run |
name | text | Name of the Name.app folder |
path | text | Absolute and full Name.app path |
See the last time applications were used. Useful to know if a vulnerable application is being used as well as for licensing purposes.
SELECT *, strftime('%Y-%m-%d %H:%M:%S',last_opened_time,'unixepoch') as LastUseDate FROM apps WHERE last_opened_time!='-1.0';