diff options
author | pawel <pawel@FreeBSD.org> | 2016-05-29 19:33:33 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2016-05-29 19:33:33 +0800 |
commit | 1cd7cbcc43d53e3cff461233f5305bea3b571482 (patch) | |
tree | cc7bdee2219bf14cdd15a35730c3796913b47c50 /dns/Makefile | |
parent | b54c75854a7d56618da3e4d2717a669c7b269acf (diff) | |
download | freebsd-ports-gnome-1cd7cbcc43d53e3cff461233f5305bea3b571482.tar.gz freebsd-ports-gnome-1cd7cbcc43d53e3cff461233f5305bea3b571482.tar.zst freebsd-ports-gnome-1cd7cbcc43d53e3cff461233f5305bea3b571482.zip |
Multithreaded perl script to enumerate DNS information
of a domain and discover non-contiguous IP blocks.
OPERATIONS:
Get the host's address (A record).
Get the nameservers (threaded).
Get the MX record (threaded).
Perform axfr queries on nameservers and
get BIND VERSION (threaded).
Get extra names and subdomains via google
scraping (google query = "allinurl: -www site:domain").
Brute force subdomains from file, can also
perform recursion on subdomain that have NS records (all threaded).
Calculate C class domain network ranges
and perform whois queries on them (threaded).
Perform reverse lookups on netranges
( C class or/and whois netranges) (threaded).
Write to domain_ips.txt file
ip-blocks.
WWW:https://github.com/fwaeytens/dnsenum
PR: 208950
Submitted by: Rihaz Jerrin <rihaz.jerrin@gmail.com>
Diffstat (limited to 'dns/Makefile')
-rw-r--r-- | dns/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index 67b0bbf8fd25..ffb8af72431b 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -37,6 +37,7 @@ SUBDIR += dnscrypt-wrapper SUBDIR += dnsdbck SUBDIR += dnsdist + SUBDIR += dnsenum SUBDIR += dnsflood SUBDIR += dnshistory SUBDIR += dnsjava |