turbot/net

GitHub
steampipe plugin install netsteampipe plugin install net

Net + Steampipe

Steampipe is an open source CLI to instantly query cloud APIs using SQL.

The net plugin is a set of utility tables for steampipe to query attributes of X.509 certificates associated with websites, DNS records, and connectivity to specific network socket addresses.

For example:

select
issuer,
not_after as exp_date
from
net_certificate
where
domain = 'steampipe.io';
+----------------------------+---------------------+
| issuer | exp_date |
+----------------------------+---------------------+
| CN=R3,O=Let's Encrypt,C=US | 2021-02-24 03:02:15 |
+----------------------------+---------------------+

Documentation

Get started

Install

Download and install the latest Steampipe Net plugin:

steampipe plugin install net

Credentials

ItemDescription
CredentialsNo creds required
Permissionsn/a
RadiusSteampipe limits searches to specific resources based on the provided Quals e.g. domain for certificates and DNS queries and address for network connection information
Resolutionn/a

Configuration

No configuration is needed. Installing the latest net plugin will create a config file (~/.steampipe/config/net.spc) with a single connection named net:

connection "net" {
plugin = "net"
}

Get involved