this just involved a better understanding of the data types provided by libnl and some refactoring to make querying as a user of the libnl library easier
15 lines
452 B
TOML
15 lines
452 B
TOML
[package]
|
|
name = "ex-revshell-beacon"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.21.2", features = ["net", "rt", "macros", "rt-multi-thread", "io-util", "time"] }
|
|
nl-sys = { path = "../../../nl-sys" }
|
|
pcap-sys = { path = "../../../pcap-sys" }
|
|
anyhow = "1.0.70"
|
|
tokio-stream = "0.1.14"
|
|
log = "0.4.17"
|
|
simple_logger = "4.1.0" |