mirror of
https://github.com/memN0ps/venom-rs
synced 2026-06-06 16:14:29 +00:00
39c790a654
Massive update, still untested but appears to be more usable
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[package]
|
|
name = "generate_shellcode"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
#log = "0.4.17"
|
|
#env_logger = "0.10.0"
|
|
clap = {version = "4.3.0", features = ["derive"] }
|
|
|
|
[dependencies.windows-sys]
|
|
version = "0.48.0"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_SystemServices",
|
|
"Win32_System_WindowsProgramming",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_NetworkManagement_IpHelper",
|
|
"Win32_Networking_WinSock",
|
|
"Win32_System_SystemInformation",
|
|
"Win32_System_Environment",
|
|
"Win32_System_ProcessStatus",
|
|
"Win32_Globalization",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_Kernel",
|
|
"Win32_System_Pipes",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_IO",
|
|
"Win32_Networking_ActiveDirectory",
|
|
"Win32_Security_Authentication_Identity"
|
|
] |