turbot/whois

GitHub
steampipe plugin install whoissteampipe plugin install whois

WHOIS + Steampipe

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

WHOIS is a widely used Internet record listing that identifies who owns a domain and how to get in contact with them. The Internet Corporation for Assigned Names and Numbers (ICANN) regulates domain name registration and ownership.

For example:

select
domain,
expiration_date
from
whois_domain
where
domain = 'steampipe.io';
+--------------+---------------------+
| domain | expiration_date |
+--------------+---------------------+
| steampipe.io | 2021-10-13 19:28:29 |
+--------------+---------------------+

Documentation

Get started

Install

Download and install the latest WHOIS plugin:

steampipe plugin install whois

Credentials

ItemDescription
CredentialsNo creds required
Permissionsn/a
RadiusSteampipe connects to the correct WHOIS server based on the TLD
Resolutionn/a

Configuration

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

connection "whois" {
plugin = "whois"
}

Get involved