Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DNSResult ¶
type DNSResultAny ¶
func QueryDNSAny ¶
func QueryDNSAny(domain, resolver string) DNSResultAny
func ScanSub ¶
func ScanSub(word, domain, resolver string) DNSResultAny
type PassiveResult ¶
type PassiveResult struct {
Domain string `json:"domain"`
Source string `json:"source"`
Subdomains []string `json:"subdomains"`
TotalCerts int `json:"certificates_found"`
FirstSeen string `json:"first_seen,omitempty"`
LastSeen string `json:"last_seen,omitempty"`
}
func PassiveRecon ¶
func PassiveRecon(domain string, limit int) (PassiveResult, error)
type WhoisResult ¶
type WhoisResult struct {
Domain string `json:"domain"`
Registrar string `json:"registrar"`
CreatedDate string `json:"created_date"`
ExpiryDate string `json:"expiry_date"`
UpdatedDate string `json:"updated_date"`
Nameservers []string `json:"nameservers"`
Status []string `json:"status"`
Raw string `json:"-"`
}
func Lookup ¶
func Lookup(domain string) (WhoisResult, error)
Click to show internal directories.
Click to hide internal directories.