This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Bulk DNS Lookup | |
# Generates a CSV of DNS lookups from a list of domains. | |
# | |
# File name/path of domain list: | |
domain_list='domains.txt' # One FQDN per line in file. | |
# | |
# IP address of the nameserver used for lookups: | |
ns_ip='1.1.1.1' # Is using Cloudflare's 1.1.1.1. | |
# |