All Projects → SageHack → Cloud Buster

SageHack / Cloud Buster

Licence: gpl-3.0
A Cloudflare resolver that works

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Cloud Buster

Cloudfail
Utilize misconfigured DNS and old database records to find hidden IP's behind the CloudFlare network
Stars: ✭ 1,239 (+867.97%)
Mutual labels:  cloudflare, pentesting, pentest
Pwncat
pwncat - netcat on steroids with Firewall, IDS/IPS evasion, bind and reverse shell, self-injecting shell and port forwarding magic - and its fully scriptable with Python (PSE)
Stars: ✭ 904 (+606.25%)
Mutual labels:  pentesting, pentest
Ssrf Testing
SSRF (Server Side Request Forgery) testing resources
Stars: ✭ 1,718 (+1242.19%)
Mutual labels:  pentesting, pentest
Social Analyzer
API, CLI & Web App for analyzing & finding a person's profile across +1000 social media \ websites (Detections are updated regularly by automated systems)
Stars: ✭ 8,449 (+6500.78%)
Mutual labels:  pentesting, pentest
Dumpsterfire
"Security Incidents In A Box!" A modular, menu-driven, cross-platform tool for building customized, time-delayed, distributed security events. Easily create custom event chains for Blue- & Red Team drills and sensor / alert mapping. Red Teams can create decoy incidents, distractions, and lures to support and scale their operations. Build event sequences ("narratives") to simulate realistic scenarios and generate corresponding network and filesystem artifacts.
Stars: ✭ 775 (+505.47%)
Mutual labels:  pentesting, pentest
Awesome Oscp
A curated list of awesome OSCP resources
Stars: ✭ 804 (+528.13%)
Mutual labels:  pentesting, pentest
V3n0m Scanner
Popular Pentesting scanner in Python3.6 for SQLi/XSS/LFI/RFI and other Vulns
Stars: ✭ 847 (+561.72%)
Mutual labels:  cloudflare, pentesting
Habu
Hacking Toolkit
Stars: ✭ 635 (+396.09%)
Mutual labels:  pentesting, pentest
Web Brutator
Fast Modular Web Interfaces Bruteforcer
Stars: ✭ 97 (-24.22%)
Mutual labels:  pentesting, pentest
Cloudflair
🔎 Find origin servers of websites behind CloudFlare by using Internet-wide scan data from Censys.
Stars: ✭ 1,176 (+818.75%)
Mutual labels:  cloudflare, pentest
Spoilerwall
Spoilerwall introduces a brand new concept in the field of network hardening. Avoid being scanned by spoiling movies on all your ports!
Stars: ✭ 754 (+489.06%)
Mutual labels:  pentesting, pentest
Sippts
Set of tools to audit SIP based VoIP Systems
Stars: ✭ 116 (-9.37%)
Mutual labels:  pentesting, pentest
Diamorphine
LKM rootkit for Linux Kernels 2.6.x/3.x/4.x/5.x (x86/x86_64 and ARM64)
Stars: ✭ 725 (+466.41%)
Mutual labels:  pentesting, pentest
Pidrila
Python Interactive Deepweb-oriented Rapid Intelligent Link Analyzer
Stars: ✭ 125 (-2.34%)
Mutual labels:  pentesting, pentest
Spiderfoot
SpiderFoot automates OSINT for threat intelligence and mapping your attack surface.
Stars: ✭ 6,882 (+5276.56%)
Mutual labels:  pentesting, pentest
Cve 2016 8610 Poc
CVE-2016-8610 (SSL Death Alert) PoC
Stars: ✭ 26 (-79.69%)
Mutual labels:  pentesting, pentest
Dictionary Of Pentesting
Dictionary collection project such as Pentesing, Fuzzing, Bruteforce and BugBounty. 渗透测试、SRC漏洞挖掘、爆破、Fuzzing等字典收集项目。
Stars: ✭ 492 (+284.38%)
Mutual labels:  pentesting, pentest
Thc Hydra
hydra
Stars: ✭ 5,645 (+4310.16%)
Mutual labels:  pentesting, pentest
Cloakify
CloakifyFactory - Data Exfiltration & Infiltration In Plain Sight; Convert any filetype into list of everyday strings, using Text-Based Steganography; Evade DLP/MLS Devices, Defeat Data Whitelisting Controls, Social Engineering of Analysts, Evade AV Detection
Stars: ✭ 1,136 (+787.5%)
Mutual labels:  pentesting, pentest
Hacker Container
Container with all the list of useful tools/commands while hacking and pentesting Kubernetes Clusters
Stars: ✭ 105 (-17.97%)
Mutual labels:  pentesting, pentest

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

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

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

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

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

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

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].