Skip to content

Commit 3bded31

Browse files
committed
init
1 parent 561a536 commit 3bded31

File tree

5 files changed

+1027
-0
lines changed

5 files changed

+1027
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[package]
2+
name = "cloud_fade"
3+
version = "0.1.0"
4+
authors = ["boring <boringthegod@tutanota.com>"]
5+
edition = "2021"
6+
description = "Unmask real IP address of a domain hidden behind Cloudflare by IPs bruteforcing"
7+
repository = "https://github.com/boringthegod/CloudFade"
8+
readme = "README.md"
9+
license = "GPL-3.0-only"
10+
11+
[[bin]]
12+
name = "cloud_fade"
13+
path = "src/main.rs"
14+
15+
[dependencies]
16+
clap = "2.33"
17+
reqwest = { version = "0.11", features = ["json", "gzip", "brotli", "default-tls", "rustls-tls"] }
18+
tokio = { version = "1", features = ["full" ] }
19+
futures = "0.3"
20+
rand = "0.8"
21+
num_cpus = "1.13"
22+
indicatif = "0.17"
23+
colored = "2.0"

0 commit comments

Comments
 (0)