mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
6e874b9887
* whoops * newlines to end files * better code comments * better code comments * only compile necessary features. ones not asked for get dummy stub functions * newline at end of file * small version bump. better conditional compilation logic. better code comments * build updates to try to cover feature combinations * typo * lock * glaring readme issues...will address more on separate branch * newline * typo * typo * this was more than just a patch bump for utils * Update reverse shell badge data via Github Action * Update process migration badge data via Github Action * Update process hollowing badge data via Github Action * Update xor params badge data via Github Action * lock * compat change on windows crate * require newer win version to support change Co-authored-by: kmanc <kmanc@users.noreply.github.com>
20 lines
487 B
TOML
20 lines
487 B
TOML
[package]
|
|
name = "tcp_reverse_shell"
|
|
version = "1.1.3"
|
|
edition = "2021"
|
|
authors = ["Kevin Conley <koins@duck.com>"]
|
|
rust-version = "1.58"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rco_config = {path = "../rco_config"}
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows.version = ">=0.26.0"
|
|
windows.features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Networking_WinSock",
|
|
"Win32_System_Threading" ]
|