Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ImShyMike committed Nov 27, 2024
1 parent d3d0fcb commit fe572e7
Show file tree
Hide file tree
Showing 9 changed files with 941 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
![Project Logo](static/image.png)

# DNS-Tool
Tool to compare all DNS records for many different nameservers. Useful for checking DNS propagation of records and discovering all DNS records of a domain.

## Installation
1. Clone the repository:
```bash
git clone https://github.com/ImShyMike/DNS-Tool.git
```

2. Install dependencies:
```bash
pip install -r requirements.txt
```

## Usage
To run the flask app run:
```bash
python main.py
```

## License
This project is licensed under the [MIT License](LICENSE).
12 changes: 12 additions & 0 deletions dns_servers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"Google": ["8.8.8.8", "8.8.4.4"],
"Cloudflare": ["1.1.1.1", "1.0.0.1"],
"OpenDNS Home": ["208.67.222.222", "208.67.220.220"],
"Quad9": ["9.9.9.9", "149.112.112.112"],
"NextDNS": ["45.90.28.188", "45.90.30.188"],
"Neustar": ["156.154.70.1", "156.154.71.1"],
"Norton ConnectSafe": ["199.85.126.10", "199.85.127.10"],
"Comodo Secure": ["8.26.56.26", "8.20.247.20"],
"NordVPN": ["103.86.96.100", "103.86.99.100"],
"Verisign": ["64.6.64.6", "64.6.65.6"]
}
Loading

0 comments on commit fe572e7

Please sign in to comment.