All Projects → haccer → available

haccer / available

Licence: GPL-3.0 license
Domain availability checking for Golang

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to available

Malicious Domain Whois
🔰 非法域名挖掘与画像系统
Stars: ✭ 69 (+130%)
Mutual labels:  whois, domain
icinga-domain-expiration-plugin
Icinga2/Nagios plugin for checking domain expiration
Stars: ✭ 24 (-20%)
Mutual labels:  whois, domain
domain-monitor
Self-hosted server to monitor WHOIS records for specified domains.
Stars: ✭ 36 (+20%)
Mutual labels:  whois, domain
domnibus
Access domain information via python and command line.
Stars: ✭ 16 (-46.67%)
Mutual labels:  whois, domain
Whois Parser
Go(Golang) module for domain whois information parsing.
Stars: ✭ 123 (+310%)
Mutual labels:  whois, domain
Domain Tool
微信域名拦截检测、QQ域名拦截检测:http://eson.vip ,查询有缓存,如需实时查询请自行部署。
Stars: ✭ 270 (+800%)
Mutual labels:  whois, domain
Php Whois
PHP WHOIS provides parsed and raw whois lookup of domains and ASN routes. PHP 5.4+ and 7+ compatible
Stars: ✭ 179 (+496.67%)
Mutual labels:  whois, domain
Pyfunceble
The tool to check the availability or syntax of domain, IP or URL.
Stars: ✭ 143 (+376.67%)
Mutual labels:  whois, domain
Funceble
[ARCHIVED] Please report to https://github.com/funilrys/PyFunceble.
Stars: ✭ 25 (-16.67%)
Mutual labels:  whois, domain
Urlextractor
Information gathering & website reconnaissance | https://phishstats.info/
Stars: ✭ 341 (+1036.67%)
Mutual labels:  whois, domain
Python Whois
Python module/library for retrieving WHOIS information of domains 💻❤
Stars: ✭ 128 (+326.67%)
Mutual labels:  whois, domain
Whois
Go(Golang) module for domain and ip whois information query.
Stars: ✭ 153 (+410%)
Mutual labels:  whois, domain
node-healthcheck-operator
K8s Node Health Check Operator
Stars: ✭ 22 (-26.67%)
Mutual labels:  availability
osint
Docker image for osint
Stars: ✭ 92 (+206.67%)
Mutual labels:  whois
availability-calculator
Calculate how much downtime should be permitted in your Service Level Agreement or Objective
Stars: ✭ 60 (+100%)
Mutual labels:  availability
Whois
Intelligent WHOIS client
Stars: ✭ 244 (+713.33%)
Mutual labels:  whois
findcdn
findCDN is a tool created to help accurately identify what CDN a domain is using.
Stars: ✭ 64 (+113.33%)
Mutual labels:  domain
wx-domain-test
微信域名防封系统 实时检测 自动切换域名 消息提醒
Stars: ✭ 71 (+136.67%)
Mutual labels:  domain
Mylg
Network Diagnostic Tool
Stars: ✭ 2,538 (+8360%)
Mutual labels:  whois
Ip Attack
Auto IP or Domain Attack Tool ( #1 )
Stars: ✭ 162 (+440%)
Mutual labels:  whois

Is 'domain.x' Available?

Build Status Go Report Card GoDoc GitHub license

IN WHOIS WE TRUST

My cheap way of checking whether a domain is available to be purchased or not (powered by whois).

Disclaimer

This package might not be able to check the available for every possible domain TLD, since whois does not work with some TLDs. In the future, I might include options to call different APIs (Gandi API, Domainr, etc.).

Example

package main

import (
        "fmt"
        "github.com/haccer/available"
)

func main() {
        domain := "dreamdomain.io"

        available := available.Domain(domain)

        if available {
                fmt.Println("[+] Success!")
        }
}
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].