implement

This commit is contained in:
2025-12-06 23:41:56 +09:00
parent b8c2642a49
commit d5ce1d792b
5 changed files with 2249 additions and 0 deletions

27
Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "cve-hh-exploit"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = {version = "1.48", features = ["full"]}
reqwest = { version = "0.12", features = [
"json",
"deflate",
"gzip",
"stream",
"socks",
"native-tls",
"blocking",
"cookies",
"native-tls-vendored",
"native-tls-alpn",
] }
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
anyhow = "1.0"
tracing = "0.1"
url = "2.5"
lazy_static = "1.5"
clap = { version = "4.5", features = ["derive"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }