• Stars
    star
    155
  • Rank 239,414 (Top 5 %)
  • Language
    Python
  • Created about 5 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This small utility retrieves from the CommonCrawl data set unique subdomains for a given domain name.

CCrawlDNS

CommonCrawl data set subdomain extracter.

Author: Laurent Gaffie <[email protected] > https://g-laurent.blogspot.com

Intro

CCrawlDNS is a small pentest utility that make use of the CommonCrawl data set API (petabytes of data!). This tool will make multiple queries to CommonCrawl.org and fetches all collected subdomains since 2008 related to the DNS you provided as target and will store in a DB all unique subdomains.

This tool uses multiprocessing for performance enhancement.

New option added: Ability to print all collected URLs for a given domain and search by file extensions.

Usage

Running the tool:

python CCrawlDNS.py -d example.com

python3 CCrawlDNS.py -d example.com

Print all URLs:

python CCrawlDNS.py -d example.com -p

Print all URLs with the file extension ".asp":

python CCrawlDNS.py -d example.com -p -f .asp

Requirements

pip install requests