Project

dnstwister

0.0
No release in over 3 years
Low commit activity in last 3 years
dnstwister API wrapper for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
~> 13.0
~> 3.9
~> 5.0
~> 3.7
 Project Readme

dnstwister

Gem Version Build Status Coverage Status CodeFactor

dnstwister API wrapper for Ruby.

Installation

gem install dnstwister

Usage

require "dnstwister"

api = DNSTwister::API.new

domain = "example.com"

res = api.fuzz(domain)
fuzzy_domains = res.dig("fuzzy_domains") || []
p fuzzy_domains.map { |domain| domain.dig "domain" }
# => ["example.com", "examplea.com", "exampleb.com", "examplec.com", "exampled.com", ...]

api.safebrowsing domain
api.ip domain
api.parked domain
api.whois domain

License

The gem is available as open source under the terms of the MIT License.