mafintosh / dns-packet

An abstract-encoding compliant module for encoding / decoding DNS packets
MIT License
201 stars 70 forks source link

How can I check all type at once #85

Open neelhabib opened 1 year ago

neelhabib commented 1 year ago

I want to check all query records , like A, AAAA, SOA, CNAME, MX at once. How can I do that? Thanks

silverwind commented 1 year ago

If you mean in a single DNS request packet, there is AXFR (zone transfer) and ANY (deprecated, widely unsupported because of DDOS potential) question rrtypes.

I don't think AXFR is correctly implemented here thought, see https://github.com/mafintosh/dns-packet/issues/82.