mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
fcd72bacc3
* bump minor version and win crate version * bump minor version and win crate version * update lib to use new windows syntax and a few small changes i neglected to make here before * update tcp_rev_shell to work on new windows crate * update process_hollowing to work on new windows crate * update process_migration to work on new windows crate * lock things * as expected, i completely botched the merge conflict * lock change? * fixed a mistake i introduced
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
authors = ["Kevin Conley <koins@duck.com>"]
|
|
description = "Creates a process and overwrites the entry point with shellcode (default to a reverse shell on localhost:4444)"
|
|
documentation = "https://kmanc.github.io/remote_code_oxidation/process_hollowing.html"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "process_hollowing"
|
|
repository = "https://github.com/kmanc/remote_code_oxidation/tree/main/process_hollowing"
|
|
rust-version = "1.59"
|
|
version = "1.7.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
xor = ["rco_utils/xor"]
|
|
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(target_os="linux")'.dependencies]
|
|
nix = ">=0.16"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows.version = ">=0.41.0"
|
|
windows.features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_Kernel",
|
|
"Win32_System_Threading" ]
|