All Projects → domainr → Epp

domainr / Epp

Licence: mit
EPP (Extensible Provisioning Protocol) client for Go

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Epp

ADios
ADBlocker - Block ADS on Twitch, Spotify and EVERYWHERE via the HOST File, PI-Hole, Adblocker Add-on, DNSMasq, Response Policy Zone and Adguard Services. - ADios ADS !
Stars: ✭ 73 (+69.77%)
Mutual labels:  domains
Dnstwist
Domain name permutation engine for detecting homograph phishing attacks, typo squatting, and brand impersonation
Stars: ✭ 3,124 (+7165.12%)
Mutual labels:  domains
Bugcrowd Levelup Subdomain Enumeration
This repository contains all the material from the talk "Esoteric sub-domain enumeration techniques" given at Bugcrowd LevelUp 2017 virtual conference
Stars: ✭ 513 (+1093.02%)
Mutual labels:  domains
icinga-domain-expiration-plugin
Icinga2/Nagios plugin for checking domain expiration
Stars: ✭ 24 (-44.19%)
Mutual labels:  domains
EppLib.NET
EppLib.NET is a .NET library implementing the Extensible Provisioning Protocol (EPP)
Stars: ✭ 47 (+9.3%)
Mutual labels:  domains
Flare
An analytical framework for network traffic and behavioral analytics
Stars: ✭ 363 (+744.19%)
Mutual labels:  domains
homoglyphs
Homoglyphs: get similar letters, convert to ASCII, detect possible languages and UTF-8 group.
Stars: ✭ 70 (+62.79%)
Mutual labels:  domains
Wp Hercules
Simple domain mapping for top domains
Stars: ✭ 13 (-69.77%)
Mutual labels:  domains
DNS-Sinkhole-Lists-A2
A DNS Sinkhole List for testing purposes. (not for use in production systems) - UUID: 0f90ca2c-4b0a-4fbe-b659-449ab30c4284
Stars: ✭ 19 (-55.81%)
Mutual labels:  domains
Whatbreach
OSINT tool to find breached emails, databases, pastes, and relevant information
Stars: ✭ 472 (+997.67%)
Mutual labels:  domains
ucsunivention
⚫ Curso GRÁTIS SAMBA-4 UCS Univention Core Free 5.x Domain Controller Active Directory Open Source
Stars: ✭ 29 (-32.56%)
Mutual labels:  domains
namecheapapi
Python Namecheap API wrapper. Supports domain registration/renewal/management, domain availability checks, DNS updates and more.
Stars: ✭ 22 (-48.84%)
Mutual labels:  domains
Django Api Domains
A pragmatic styleguide for Django API Projects
Stars: ✭ 365 (+748.84%)
Mutual labels:  domains
resolution
A library to resolve blockchain domain names.
Stars: ✭ 190 (+341.86%)
Mutual labels:  domains
Domain hunter
A Burp Suite Extension that try to find all sub-domain, similar-domain and related-domain of an organization automatically! 基于流量自动收集整个企业或组织的子域名、相似域名、相关域名的burp插件
Stars: ✭ 594 (+1281.4%)
Mutual labels:  domains
domainatrex
😈 A library for parsing TLDs from urls in Elixir
Stars: ✭ 29 (-32.56%)
Mutual labels:  domains
Phishing.database
Phishing Domains, urls websites and threats database. We use the PyFunceble testing tool to validate the status of all known Phishing domains and provide stats to reveal how many unique domains used for Phishing are still active.
Stars: ✭ 296 (+588.37%)
Mutual labels:  domains
Namebeta
A command line domain query tool.
Stars: ✭ 41 (-4.65%)
Mutual labels:  domains
Funceble
[ARCHIVED] Please report to https://github.com/funilrys/PyFunceble.
Stars: ✭ 25 (-41.86%)
Mutual labels:  domains
Dnsgen
Generates combination of domain names from the provided input.
Stars: ✭ 389 (+804.65%)
Mutual labels:  domains

EPP for Go

build status godoc

EPP (Extensible Provisioning Protocol) client for Go. Extracted from and in production use at Domainr.

Note: This library is currently under development. Its API is subject to breaking changes at any time.

Installation

go get github.com/domainr/epp

Usage

tconn, err := tls.Dial("tcp", "epp.example.com:700", nil)
if err != nil {
	return err
}

conn, err := epp.NewConn(tconn)
if err != nil {
	return err
}

err = conn.Login(user, password, "")
if err != nil {
	return err
}

dcr, err := conn.CheckDomain("google.com")
if err != nil {
	return err
}
for _, r := range dcr.Checks {
	// ...
}

Todo

  • [X] Tests
  • [ ] Commands other than Check

Author

© 2021 nb.io, LLC.

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].