added a script to get xml of registered domain names. converts to json. requires yq to be installed

This commit is contained in:
Brendan McDevitt 2022-11-05 15:32:25 -05:00
parent 0c770a71fa
commit a0f30a6d91

View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
# This script will download the list of domain registrars from iana.org
#
wget -O registrar-ids.xml https://www.iana.org/assignments/registrar-ids/registrar-ids.xml
cat registrar-ids.xml | xq > registrar_ids.json