rek2_httpserver 0.1.1

HTTP server that accepts POST data to exfiltrate files from remote servers to local computer during hacking and penetration testing
Documentation
[package]
name = "rek2_httpserver"
version = "0.1.1"
edition = "2021"
authors = ["ReK2 aka Chris F.N."]
description = "HTTP server that accepts POST data to exfiltrate files from remote servers to local computer during hacking and penetration testing"
license = "GPL-3.0"
repository = "https://git.sr.ht/~rek2/rek2_httpserver"
homepage = "https://rek2.hispagatos.org"
documentation = "https://git.sr.ht/~rek2/rek2_httpserver"
keywords = ["hacking", "penetration-testing", "security", "file-upload", "exfiltration"]
categories = ["command-line-utilities", "network-programming", "web-programming::http-server"]

[lib]
name = "rek2_httpserver"
path = "src/lib.rs"

[[bin]]
name = "rek2_httpserver"
path = "src/main.rs"

[dependencies]
warp = "0.3.7"
tokio = { version = "1", features = ["full"] }
futures-util = "0.3"
bytes = "1"
clap = { version = "4.5", features = ["derive"] }
chrono = "0.4"
percent-encoding = "2.3"

[dev-dependencies]
tempfile = "3.8"