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_datefrom net_certificatewhere 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
Item | Description |
---|---|
Credentials | No creds required |
Permissions | n/a |
Radius | Steampipe limits searches to specific resources based on the provided Quals e.g. domain for certificates and DNS queries and address for network connection information |
Resolution | n/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
- Open source: https://github.com/turbot/steampipe-plugin-net
- Community: Join #steampipe on Slack →