Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
etc_services
Line-parsed /etc/services.
Column | Type | Description |
---|---|---|
aliases | text | Optional space separated list of other names for a service |
comment | text | Optional comment for a service. |
name | text | Service name |
port | integer | Service port number |
protocol | text | Transport protocol (TCP/UDP) |
Identify the TCP and UDP ports associated to standard services.
SELECT * FROM etc_services WHERE name='ftp';