resurrecting-open-source-projects / dnsmap

Scan for subdomains using bruteforcing techniques
GNU General Public License v3.0
37 stars 7 forks source link

[feature request] Add custom query type AAAA #5

Open Bogdan107 opened 3 years ago

Bogdan107 commented 3 years ago

I have authoritative DNS-server, which hosts only AAAA type records, not A. dnsmap scans only A type records.

I want option, like "--type", which helps to scan AAAA records too.

Examples:

dnsmap example.com                ; # select only A query type (by default)
dnsmap example.com --type A       ; # select only A query type
dnsmap example.com -4             ; # select only A query type
dnsmap example.com --type AAAA    ; # select only AAAA query type
dnsmap example.com -6             ; # select only AAAA query type
dnsmap example.com --type A,AAAA  ; # select A and AAAA query types
dnsmap example.com -4 -6          ; # select A and AAAA query types