mirror of
https://codeberg.org/smukx/Rust-for-Malware-Development
synced 2026-06-06 20:22:59 +00:00
28e7fac1d3
Rust-for-Malware-Development is an collection of proof of concepts with techniques and advanced evasion methods
54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
[package]
|
|
name = "KiUserExceptionDispatcherStepOver"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
dinvk = "0.3.1"
|
|
|
|
[dependencies.windows-sys]
|
|
version = "0.61.2"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_SystemServices",
|
|
"Win32_UI_Shell",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_System_WindowsProgramming",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_SystemInformation",
|
|
"Win32_Globalization",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_Console",
|
|
"Win32_System_Kernel",
|
|
"Win32_System_Pipes",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_IO",
|
|
"Win32_Networking_ActiveDirectory",
|
|
"Win32_Security_Authentication_Identity",
|
|
|
|
"Wdk_Foundation",
|
|
"Wdk_System_Memory"
|
|
]
|
|
|
|
[features]
|
|
# default = ["debug"]
|
|
debug = []
|
|
|
|
[profile.release]
|
|
opt-level = "z" # Optimize for size.
|
|
lto = true # Enable Link Time Optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
panic = "abort" # Abort on panic
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
[profile.dev]
|
|
opt-level = "z" # Optimize for size.
|
|
lto = true # Enable Link Time Optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
panic = "abort" # Abort on panic
|
|
strip = true # Automatically strip symbols from the binary. |