R package that queries WHOIS servers.
This package is available in CRAN.
install.packages("Rwhois")
To install the development or GIT repository version, this requires the “devtools” package available in CRAN.
Assuming you don’t already have devtools installed, run the following:
install.packages("devtools")
With devtools installed, it’s fairly simple to install the development branch:
library(devtools)
install_git("https://gitlab.com/BCable/Rwhois.git")
library(Rwhois)
# Grab WHOIS data for an IP
whois_query("1.1.1.1")
# Grab WHOIS data for a hostname from a different whois server
whois_query("bcable.net", server="whois.verisign-grs.com")
# Grab multiple vectorized results
domains <- c("bcable.net", "4.2.2.4")
whois_query(domains)
# Extract Country Info About IP Addresses
ip_addresses <- c("1.1.1.1", "8.8.8.8")
ret <- whois_query(ip_addresses)
countries <- whois_keyextract(ret, "country")
# Extract Organization Info About Hostnames
ret <- whois_query(hostnames)
organization_names <- whois_keyextract(ret,
c("org-name", "orgname", "organisation", "organization")
)