mdaxfr

- Mass DNS AXFR
git clone git://git.acid.vegas/mdaxfr.git
Log | Files | Refs | Archive | README | LICENSE

commit 12473ab88b3011093b1738aa4210ee66bcd3ffeb
parent b70bc1b6f2f808473aef0960d133ca3ebd534711
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sat, 30 Nov 2024 15:14:54 -0500

Added note that this is a live repo using github actiosn to perform daily AXFRs on all the root TLDs

Diffstat:
MREADME.md | 2++

1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md
@@ -45,6 +45,8 @@ I only wrote this to shit on **[this bozo](https://github.com/flotwig/TLDR-2/)**
 
 As of my last scan in 2023, I was only able to AXFR the zones for **8** *(.er, .fj, .gp, .mp, .mw, .ni, .sl, .xn--54b7fta0cc)* out of **1,456** root TLDs, & **114** out of **7,977** TLDs in the [Public suffix list](https://publicsuffix.org/). The [addition scripts](./extras/) in this repository provide an additional **37** zone files.
 
+This repository also includes a GitHub Actions workflow that will automatically perform a daily scan of the root TLDs and push the results to the [axfrout/root](./axfrout/) directory.
+
 For laughs, here is a one-liner mass zone axfr:
 ```bash
 curl -s https://www.internic.net/domain/root.zone | awk '$4=="A" || $4=="AAAA" {print substr($1, 3) " " $5}' | sed 's/\.$//' | xargs -n2 sh -c 'dig AXFR "$0" "@$1"'