No project description provided
Project description
DNS Guesser 🧐
A simple tool that allows you to resolve subdomains for the given domain list.
Why ❓
Firewalls that operate on the TCP Layer 4 couldn't filter sites based on the URLs/Domains. For example, you cannot block domain.com or any of its subdomains by name. You need to know their IP addresses.
This tool helps to get IP addresses for the given domain list and also tries to guess respective subdomains. It can be put behind a cron job that will regenerate the list and push it to the firewall.
Can be useful for Linux IpTables and Windows firewall.
How 🤔
By default, this CLI maintains the 5000 most used subdomains. You can override this list by providing a path to a file with custom subdomains (one domain per line, no regex support).
Example:
www
api
mail
www2.dev
It takes the domain you want to resolve, combines it with the subdomain, and sends the request to the DNS server. It tries to resolve the DNS ‘A’ record first, and if there is no answer, it falls back to ‘CNAME’.
Is it slow? 🐌
It depends on the list of domains you want to resolve multiplied by the list of subdomains. This CLI runs across multiple threads to speed up the process. The more threads, the faster it runs.
Example: For two domains and 5000 subdomains, it usually takes 30-40 seconds to complete the task (64 threads are used).
Help 🧑🏼💻
Here is the app help:
usage: dns-guesser [-h] -d 'google.com,linkedin.com' [-s '8.8.8.8,8.8.4.4'] [-sw subdomain_list.txt] [-hc github.com] [-o dns_resolution_result.txt] [-fr]
[-t 64] [-db]
Subdomain Resolver
options:
-h, --help
show this help message and exit
-d 'google.com,linkedin.com', --domains-to-resolve 'google.com,linkedin.com'
Comma-separated domains to resolve.
-s '8.8.8.8,8.8.4.4', --dns-servers '8.8.8.8,8.8.4.4'
Comma-separated list of DNS servers to use. Default is '8.8.8.8,8.8.4.4'.
-sw subdomain_list.txt, --subdomain-word-list-file-path subdomain_list.txt
Path to the subdomain word list file. If not provided, a default list with 5000 of the most used subdomains will be used.
-hc github.com, --health-check-domain github.com
Domain for the DNS servers health check. The DNS server is considered valid if it can resolve the domain. Default is 'github.com'.
-o dns_resolution_result.txt, --output-file-path dns_resolution_result.txt
Path to the result file. Default is './dns_resolution_result.txt'.
-fr, --flat-result
Writes results in flat format. Every line contains only an IP address. If not set, each domain will have its own section.
-t 64, --max-thread-count 64
Maximum number of threads to use. Default is 64.
-db, --debug
Outputs debug information.
Examples:
dns-guesser --domains-to-resolve "google.com, linkedin.com"
dns-guesser --domains-to-resolve "linkedin.com" --dns-servers "1.1.1.1" --subdomain-word-list-file-path ./subdomains.txt --health-check-domain github.com --output-file-path ./result.txt --flat-result False -t 100 --debug
Alternatively, you can put the configuration in a config file. The application checks the config.json in the same working directory. Example:
{
"subdomain_word_list_file_path": "/path/to/the/subdomain_word_list.txt",
"flat_result": true,
"debug": false,
"output_file_path": "./result.txt",
"max_thread_count": 100,
"domains_to_resolve": [
"github.com",
"linkedin.com"
],
"dns": {
"servers": [
"8.8.8.8",
"8.8.4.4"
],
"health_check_domain": "github.com"
}
}
How to get it 🚀
Make sure that you have at least Python 3.10 version installed.
The easiest way is to install it via pip:
pip install dns-guesser
What is the source for 5000 subdomains
Special thanks 🎸 goes to the https://github.com/danielmiessler/SecLists repo.
Output file
Flat
1.1.1.1
1.1.1.2
8.8.1.1
Not flat
8.8.8.8 # ns1.google.com, ns2.google.com
1.1.1.1 # domain.com, www.example.com
1.2.1.2 # something.example.com
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dns_guesser-0.1.2.tar.gz.
File metadata
- Download URL: dns_guesser-0.1.2.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6397e8392085e73a23a7793fde964db5f28ef209f1fabd30e478b9a88ef16cc7
|
|
| MD5 |
3e5533bc50302771711ee5d49b3b164b
|
|
| BLAKE2b-256 |
a02b8d3c6f293a1c68d57eeb94a0a4b1efbad1fa7120656cb472013e06f6ff42
|
File details
Details for the file dns_guesser-0.1.2-py3-none-any.whl.
File metadata
- Download URL: dns_guesser-0.1.2-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4da9b18843a4ec69ee689d84852534209883419a6766b61abf69d180f29113a6
|
|
| MD5 |
a194ca8e60b635884e5983ef2c4b69c2
|
|
| BLAKE2b-256 |
bd111261b89db30a955274ce97742915bdfe2c203779e173c31a776a86ead984
|