From 31af6d485a39ed48fdfc43cfd4342758f34ee9f5 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Fri, 24 Nov 2023 04:11:01 -0500 Subject: [PATCH] Added in-addr.arpa zone retrieval to the POSIX version --- mdaxfr | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mdaxfr b/mdaxfr index 99581e8..cedac86 100755 --- a/mdaxfr +++ b/mdaxfr @@ -38,6 +38,9 @@ attempt_axfr() { echo "[\e[31WARNING\e[0m] Most nameservers will block AXFR requests \e[90m(It is normal for most of these to fail)\e[0m" sleep 3 +# For root IP space zones +for i in $(seq 0 255); do dig +nocmd +noall +answer +multiline $i.in-addr.arpa NS; done > $OUTPUT_DIR/root/in-addr.arpa.txt + # For root nameservers for root in $(dig +short . NS | sed 's/\.$//'); do attempt_axfr "." "$root" "$OUTPUT_DIR/root/$root.txt"