Files
kmanc-remote_code_oxidation/tcp_reverse_shell/Cargo.toml
T
kmanc 6f38bd67fc Antistring crash (#72)
* cargo lock and version bumps

* reduce number of loadlibrary calls to reduce error 126 crashes

* version bump

* forgot to update the tcp rev shell antistring
2022-11-06 16:46:55 -08:00

30 lines
948 B
TOML

[package]
authors = ["Kevin Conley <koins@duck.com>"]
description = "Creates a reverse shell (default to localhost:4444)"
documentation = "https://kmanc.github.io/remote_code_oxidation/tcp_reverse_shell.html"
edition = "2021"
license = "MIT"
name = "tcp_reverse_shell"
repository = "https://github.com/kmanc/remote_code_oxidation/tree/main/tcp_reverse_shell"
rust-version = "1.59"
version = "1.5.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
antisand = ["rco_utils/antisand"]
antistring = ["rco_utils/antistring"]
[dependencies]
rco_config = {path = "../rco_config", version = ">=0.2.0"}
rco_utils = {path = "../rco_utils", version = ">=1.0.1"}
[target.'cfg(windows)'.dependencies]
windows.version = ">=0.41.0"
windows.features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Networking_WinSock",
"Win32_System_SystemInformation",
"Win32_System_Threading" ]