All Projects → weppos → Whois

weppos / Whois

Licence: mit
An intelligent — pure Ruby — WHOIS client and parser.

Programming Languages

ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to Whois

convey
CSV processing and web related data types mutual conversion
Stars: ✭ 16 (-98.36%)
Mutual labels:  whois
geoip-exporter
GeoIP exporter for Prometheus
Stars: ✭ 27 (-97.24%)
Mutual labels:  whois
Finalrecon
The Last Web Recon Tool You'll Need
Stars: ✭ 888 (-9.2%)
Mutual labels:  whois
whois-rust
This is a WHOIS client library for Rust, inspired by https://github.com/hjr265/node-whois
Stars: ✭ 17 (-98.26%)
Mutual labels:  whois
nextjs-whois
WHOIS query with Next.js
Stars: ✭ 27 (-97.24%)
Mutual labels:  whois
Domain Tool
微信域名拦截检测、QQ域名拦截检测:http://eson.vip ,查询有缓存,如需实时查询请自行部署。
Stars: ✭ 270 (-72.39%)
Mutual labels:  whois
Malicious Domain Whois
🔰 非法域名挖掘与画像系统
Stars: ✭ 69 (-92.94%)
Mutual labels:  whois
Funceble
[ARCHIVED] Please report to https://github.com/funilrys/PyFunceble.
Stars: ✭ 25 (-97.44%)
Mutual labels:  whois
whois-parser
An intelligent — pure Ruby — WHOIS parser.
Stars: ✭ 86 (-91.21%)
Mutual labels:  whois
Ipwhois
Retrieve and parse whois data for IPv4 and IPv6 addresses
Stars: ✭ 432 (-55.83%)
Mutual labels:  whois
E4GL30S1NT
E4GL30S1NT - Simple Information Gathering Tool
Stars: ✭ 139 (-85.79%)
Mutual labels:  whois
icinga-domain-expiration-plugin
Icinga2/Nagios plugin for checking domain expiration
Stars: ✭ 24 (-97.55%)
Mutual labels:  whois
Crips
IP Tools To quickly get information about IP Address's, Web Pages and DNS records.
Stars: ✭ 272 (-72.19%)
Mutual labels:  whois
Pois
Whois lookup behind proxy using Python
Stars: ✭ 41 (-95.81%)
Mutual labels:  whois
Whour
Tool for information gathering, IPReverse, AdminFInder, DNS, WHOIS, SQLi Scanner with google.
Stars: ✭ 18 (-98.16%)
Mutual labels:  whois
WHOis
Whois Online Domain Database for check domains are reserved or not as parallel
Stars: ✭ 18 (-98.16%)
Mutual labels:  whois
Threatpinchlookup
Documentation and Sharing Repository for ThreatPinch Lookup Chrome & Firefox Extension
Stars: ✭ 257 (-73.72%)
Mutual labels:  whois
Sensu Plugins Network Checks
This plugin provides native network instrumentation for monitoring and metrics collection, including: hardware, TCP response, RBLs, whois, port status, and more.
Stars: ✭ 28 (-97.14%)
Mutual labels:  whois
Masswhois
Single-threaded epoll-based concurrent bulk whois client
Stars: ✭ 18 (-98.16%)
Mutual labels:  whois
Urlextractor
Information gathering & website reconnaissance | https://phishstats.info/
Stars: ✭ 341 (-65.13%)
Mutual labels:  whois

Whois

Whois is an intelligent — pure Ruby — WHOIS client and parser.

This library was extracted from RoboWhois and RoboDomain, and it's now in use at DNSimple. It has been performing queries in production since July 2009.

Build Status

Donate a coffee

Whois is free software, but it requires a lot of coffee to write, test, and distribute it. You can support the development by donating a coffee.

Any amount is greatly appreciated.

Features

  • Ability to lookup WHOIS record for IPv4, IPv6, TLDs, and ICANN new gTLDs
  • Ability to parse WHOIS responses (via the whois-parser library)
  • Flexible and extensible interface (e.g. You can define custom servers on the fly)
  • Object oriented design, featuring 10 different design patterns
  • Pure Ruby library, without any external dependency other than Ruby itself
  • Successfully tested against different Ruby implementations, including Ruby and JRuby

Whois and Whois parser

Starting from version 4, WHOIS parser component is available in a separate repository called whois-parser, and released as a separate gem called whois-parser.

This repository contains the core whois library, that includes the WHOIS client, the server definitions and all the features required to perform WHOIS queries and obtain the WHOIS record.

Requirements

  • Ruby >= 2.4

For older versions of Ruby, see the CHANGELOG.

Installation

You can install the gem manually:

gem install whois

Or use Bundler and define it as a dependency in your Gemfile:

gem 'whois'

To use the WHOIS parser component you need to install the whois-parser gem:

gem install whois-parser
gem 'whois-parser'

The whois-parser gem already depends on the whois gem. If you install whois-parser, whois will be installed as well and it will also be automatically required when you require 'whois-parser'.

If you are upgrading to 4.0, see 4.0-Upgrade.md.

Getting Started

This section covers only the essentials for getting started with the Whois library. The documentation provides a more accurate explanation including tutorials, more examples and technical details about the client/server/record/parser architecture.

Querying a WHOIS

Whois provides the ability to get WHOIS information for TLD, domain names, IPv4 and IPv6 addresses. The client is smart enough to guess the best WHOIS server according to given query, send the request and return the response.

Check out the following examples:

# Domain WHOIS
whois = Whois::Client.new
whois.lookup("google.com")
# => #<Whois::Record>

# TLD WHOIS
whois = Whois::Client.new
whois.lookup(".com")
# => #<Whois::Record>

# IPv4 WHOIS
whois = Whois::Client.new
whois.lookup("74.125.67.100")
# => #<Whois::Record>

# IPv6 WHOIS
whois = Whois::Client.new
whois.lookup("2001:db8::1428:57ab")
# => #<Whois::Record>

The query method is stateless. For this reason, you can safely re-use the same client instance for multiple queries.

whois = Whois::Client.new
whois.lookup("google.com")
whois.lookup(".com")
whois.lookup("74.125.67.100")
whois.lookup("2001:db8::1428:57ab")
whois.lookup("google.it")

If you just need a WHOIS response and you don't care about a full control of the WHOIS client, the Whois module provides an all-in-one method called Whois.whois. This is the simplest way to send a WHOIS request.

Whois.whois("google.com")
# => #<Whois::Record>

Did I mention you can even use blocks?

Whois::Client.new do |w|
  w.lookup("google.com")
  w.lookup(".com")
  w.lookup("74.125.67.100")
  w.lookup("2001:db8::1428:57ab")
  w.lookup("google.it")
end

Consuming the Record

Any WHOIS query returns a Whois::Record. This object looks like a String, but it's way more powerful.

Whois::Record encapsulates a WHOIS record and provides the ability to parse the WHOIS response programmatically, when the whois-parser gem is installed and loaded.

require 'whois-parser'

record = Whois.whois("google.it")
# => #<Whois::Record>

parser = record.parser
# => #<Whois::Parser>

parser.available?
# => false
parser.registered?
# => true

parser.created_on
# => Fri Dec 10 00:00:00 +0100 1999

tech = parser.technical_contacts.first
# => #<Whois::Record::Contact>
tech.id
# => "TS7016-ITNIC"
tech.name
# => "Technical Services"

parser.nameservers.each do |nameserver|
  puts nameserver
end

This feature is made possible by the Whois record parsers. Unfortunately, due to the lack of a global standard, each WHOIS server requires a specific parser. For this reason, the library doesn't support all existing WHOIS servers.

If you create a new parser, please consider releasing it to the public so that it can be included in a next version.

Timeout

By default, each query run though the client has a timeout value of 5 seconds. If the execution exceeds the timeout limit, the client raises a Timeout::Error exception.

Of course, you can customize the timeout value setting a different value. If timeout is nil, the client will wait until the response is sent back from the server or the process is killed. Don't disable the timeout unless you really know what you are doing!

whois = Whois::Client.new(:timeout => 10)
whois.timeout # => 10
whois.timeout = 5
whois.timeout # => 5

whois.lookup("google.com")

Credits

Whois was created and is maintained by Simone Carletti. Many improvements and bugfixes were contributed by the open source community.

Contributing

Direct questions and discussions to Stack Overflow.

Pull requests are very welcome! Please include spec and/or feature coverage for every patch, and create a topic branch for every separate change you make.

Report issues or feature requests to GitHub Issues.

More Information

Versioning

Whois uses Semantic Versioning 2.0.0

License

Copyright (c) 2009-2021 Simone Carletti. This is Free Software distributed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].