Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
cloud-buster — A Cloudflare resolver that works | Kitploit
Tools/GitHubGitHub/sagehack/cloud-buster
ReconnaissanceVulnerability AnalysisInformation GatheringWeb SecurityPenetration TestingMisconfigurationSubdomain EnumerationDNS AnalysisArchived
GitHubsagehack/cloud-buster

cloud-buster

A Cloudflare resolver that works

View Repository
146497 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

Cloudflare Resolver

Build Status

A comprehensive pentest tool that checks Cloudflare enabled sites for origin IP leaks.

It's filled with awesome features!

  • scan a wide array of miss-configuration and vulnerabilities
  • search other IP resolution service databases
  • detail origin and related services IPs
  • smart engine that certify matches
  • multiple command line arguments to customize and fine tune
  • support target list for automated scans

Screenshot

Warning

I have left the hacking scene and thus, archived this project. It's still awesome and you can still use it and fork it.

Requirements

  • Python 3.5
  • dnspython3 1.14.0
  • libssl
  • openssl

Usage

Basic use cases

  • Simple (fast) scan: python3 bust mydomain.com
  • Comprehensive (slow) scan: python3 bust mydomain.com --scan mx crimeflare dnsdumpster subdomain --dept normal
  • Scan multiple domains: python3 bust domainlist.txt (with any options)

Complex use cases

  • Use a single scan technique: python3 bust mydomain.com --scan crimeflare
  • Chose your own mix of scan techniques: python3 bust mydomain.com --scan subdomain mx
  • Specific subdomains: python3 bust mydomain.com --scan subdomain --sub www www2 ftp direct
  • Scan the 20,000 most popular subdomains on the net: python3 bust mydomain.com --dept full

Using domain lists

Use a text file with one domain per line, nothing else

Installation

Ubuntu

root@kitploit:~
sudo apt-get install python3 python3-pip
pip3 install dnspython3 bs4
git clone https://github.com/SageHack/cloud-buster.git
cd cloud-buster
python3 bust -h

Debian 9

root@kitploit:~
su
apt install python3-pip
pip3 install dnspython3 bs4
git clone https://github.com/SageHack/cloud-buster.git
cd cloud-buster
python3 bust -h

Debian 8

root@kitploit:~
su root
apt-get remove python3
apt-get autoremove
apt-get update
apt-get install libssl-dev openssl
cd /opt
wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz
tar xzf Python-3.4.3.tgz
cd Python-3.4.3
./configure
make
sudo make install
rm *.tgz
rm -fr Python-3.4.3/
ln -s /usr/local/bin/python3 /usr/bin/python3
pip3 install dnspython3 bs4
# Open new terminal window
git clone https://github.com/SageHack/cloud-buster.git
cd cloud-buster
python3 bust -h

Void

root@kitploit:~
xbps-install python3 python-pip
pip install dnspython3 bs3
git clone https://github.com/SageHack/cloud-buster.git
cd cloud-buster
python3 bust -h

Arch and Parabola

root@kitploit:~
pacman -Sy python python-pip
pip install dnspython3 bs3
git clone https://github.com/SageHack/cloud-buster.git
cd cloud-buster
python3 bust -h

Contributing

The current tested version is Python 3.5.3. Please use this version to submit pull requests.

Otherwise, all other requirements are listed above.

Download Tool