A lightweight Python utility to detect dns records that are suspected as dangling.
Project description
DDFR - Dangling Domains Finder
A lightweight Python utility to detect dns records that are suspected as dangling.
Description
Do you have a large cloud environment with many services and VMs? Then probably some of your domain names are pointing to unclaimed IP addresses due to improper deprecation of services/VMs.
DDFR to the rescue!
Basically, the tool gets a list of your DNS records and checks if the pointed IPs belongs to your cloud accounts.
Behind the scenes
-
You provide DDFR with a list of your DNS records (see Usage section).
-
You provide DDFR with a list of all your registered cloud IPs in one of the following ways:
- Allow DDFR to automatically collect all of your registered IPs from Palo Alto's Prisma Cloud product.
- Manually provide a file with your registered cloud IPs.
-
DDFR compares the lists to see if there are domains pointing to IPs not owned by you and therefore suspected as dangling.
NOTE: DDFR also provides you with a mechanism to reduce false positives, read more about it below.
-
DDFR generates a report of the suspected DNS records.
Installation
Prerequisites
- [Optional] To pull records from Prisma Cloud, fill in the required environment variables:
export PRISMA_API_KEYID = your-value-here
export PRISMA_API_SECRET = your-value-here
export PRISMA_URL = your-value-here
PIP (recommended)
pip install ddfr
Manual
git clone https://github.com/playtika/DDFR.git
cd DDFR
pip install .
Recommended Python Version
DDFR was developed and tested only with Python3.
Usage
Short Form | Long Form | Description |
---|---|---|
-d | --domains | Full path to a file contains your DNS records |
-i | --ips | Full path to a file contains your owned ips (if non-existent will pull from prisma) |
-cn | --ssl-common-names | Full path to a file contains key words that should appear in your CNs (for reducing false positives) |
-r | --ranges | Full path to a file contains AWS ip ranges |
-o | --output | Full path to output directory |
Domains file needs to be in the following format (JSON):
[{"name": "domain name", "record_type": "DNS type (CNAME,A)", "record_value": "value (ip,ec2 domain name)"}]
Usage Examples
- Pull ips form prisma
ddfr -d "domains.json" -r "aws-ranges.txt" -cn "common-names.txt"
- Receive ips from a file
ddfr -d "domains.json" -r "aws-ranges.txt" -cn "common-names.txt" -i "my-ips.txt"
The Motivation for Creating DDFR
Subdomains takeovers have become a popular technique used by attackers and bug bounty hunters.
DNS records that points to unclaimed IP addresses is a specific use case of this attack that is pretty hard to catch (for both blue and red teams).
As a red-teamer, this kind of takeovers are hard to find as they require many resources to perform a successful attack (bruteforcing VMs IP addresses attached by the cloud providers) and reverse DNS lookup.
As a blue-teamer, companies nowadays have thousands of DNS records which makes it extremely hard to find manually.
By being able to pull your company's DNS records from your DNS management system be it AWS Route53 or any other, you can proactively look for those dangling records with this tool and mitigate these takeovers.
Roadmap
- Automate AWS ranges fetching
- Support for more cloud providers
Contributing
Feel free to fork the repository and submit pull-requests.
License
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file ddfr-0.9.1.tar.gz
.
File metadata
- Download URL: ddfr-0.9.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fa5746075c3a3dd756fb1861f55052100e4e78fe8aabe3e3343529f2f078014 |
|
MD5 | 8dd9ad9ea8440b81b5627cada0675ec0 |
|
BLAKE2b-256 | c73093ba3bf09e2f997cccf03eb96631a43de611c34b0bbb7e6e20842bbfc875 |
File details
Details for the file ddfr-0.9.1-py3-none-any.whl
.
File metadata
- Download URL: ddfr-0.9.1-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3ce8e9bb58e093bf7aba19139635465bd580b9cc7ca2d850bedf681572b7835 |
|
MD5 | 85303b9a2727bc6b9b9e34bf54fe3a89 |
|
BLAKE2b-256 | c046852434c10efb23e7d6e493220f11fad63b0750deba3a7f16fab85ee9b81f |