The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
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")
)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.