Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Dependencies will then be installed and DNS Validator will be added to your path
## CLI:

```bash
$ dnsvalidator -tL https://public-dns.info/nameservers.txt -threads 20 -o resolvers.txt
$ dnsvalidator -tL https://publicdns.info/nameservers.txt -threads 20 -o resolvers.txt
```

## Docker:
Expand All @@ -59,7 +59,7 @@ $ docker build -t dnsvalidator .
Run:

```bash
$ docker run -v $(pwd):/dnsvalidator/output -t dnsvalidator -tL https://public-dns.info/nameservers.txt -threads 20 -o /dnsvalidator/output/resolvers.txt
$ docker run -v $(pwd):/dnsvalidator/output -t dnsvalidator -tL https://publicdns.info/nameservers.txt -threads 20 -o /dnsvalidator/output/resolvers.txt
```

# Caveats
Expand Down
2 changes: 1 addition & 1 deletion dnsvalidator/lib/core/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def setup_parser():
'-tL', dest='target_list', required=False,
help='Specify a list of target DNS servers to try to resolve. '
'May be a file, or URL to listing',
default="https://public-dns.info/nameservers.txt",
default="https://publicdns.info/nameservers.txt",
type=lambda x: InputHelper.process_targets(parser, x)
)

Expand Down