app cloud_fade

Unmask real IP address of a domain hidden behind Cloudflare by IPs bruteforcing

5 releases

0.1.4 Oct 1, 2024
0.1.3 Sep 24, 2024
0.1.2 Sep 20, 2024
0.1.1 Sep 19, 2024
0.1.0 Sep 18, 2024

#525 in Network programming

Download history 338/week @ 2024-09-16 161/week @ 2024-09-23 160/week @ 2024-09-30 13/week @ 2024-10-07

672 downloads per month

GPL-3.0-only

33KB
433 lines

CloudFade

Unmask real IP address of a domain hidden behind Cloudflare by IPs bruteforcing.

You can limit the range of IPs to be tested by first using censhess

usage

Unmask real IP address of a domain hidden behind Cloudflare by IPs bruteforcing

USAGE:
    cloud_fade [FLAGS] [OPTIONS] --domain <domain> --ipfile <ipfile> --targetsfile <TARGETS_FILE>

FLAGS:
        --aggressive    More intensive checks
    -h, --help          Prints help information
    -V, --version       Prints version information

OPTIONS:
    -d, --domain <domain>               Domain to unmask
    -i, --ipfile <ipfile>               File containing list of IP addresses
        --iprange <IP_RANGE>            Specifies a range of IP addresses (for example, 51.15.0.0-51.15.10.255) or just one IP
        --output <OUTPUT_FILE>          File to write the results
    -t, --targetsfile <TARGETS_FILE>    File containing list of domains
        --threads <NUMBER>              Set the maximum number of concurrent threads
        --timeout <SECONDS>             Waiting time for each request in seconds [default: 5]
        --useragents <UA_FILE>          File containing the list of user agents

Examples:
  ./cloud_fade --domain predictasearch.com --ipfile ipsfile.txt
  ./cloud_fade --targetsfile targets.txt --ipfile ipsfile.txt
  ./cloud_fade --domain predictasearch.com --iprange 167.99.32.0-167.99.32.255
  ./cloud_fade --domain predictasearch.com --iprange 167.99.32.0-167.99.32.255 --threads 10 --timeout 8 --useragents useragents.txt --aggressive

prerequisites

installation

cargo install cloud_fade

compile

Linux:

cargo build --release

Windows:

sudo apt update && sudo apt install mingw-w64
rustup target add x86_64-pc-windows-gnu
rustup toolchain install stable-x86_64-pc-windows-gnu
cargo build --release --target x86_64-pc-windows-gnu

credits

Dependencies

~13–28MB
~448K SLoC