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.
listening_ports
Processes with listening (bound) network sockets/ports.
Column | Type | Description |
---|---|---|
address | text | Specific address for bind |
family | integer | Network protocol (IPv4, IPv6) |
fd | bigint | Socket file descriptor number |
net_namespace | text | The inode number of the network namespace Only available on Linux |
path | text | Path for UNIX domain sockets |
pid | integer | Process (or thread) ID |
port | integer | Transport layer port |
protocol | integer | Transport protocol (TCP/UDP) |
socket | bigint | Socket handle or inode number |
List executables listening on network ports.
SELECT l.port, l.pid, p.name, p.path FROM listening_ports l JOIN processes p USING (pid);