Skip to content

Instantly share code, notes, and snippets.

View MolotovCherry's full-sized avatar
😄
Life is beautiful

Cherry MolotovCherry

😄
Life is beautiful
View GitHub Profile
@MolotovCherry
MolotovCherry / Cargo.toml
Last active October 29, 2023 15:10
Running Executable Machine Code at Runtime - Windows
[package]
name = "foo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.windows]
@MolotovCherry
MolotovCherry / Cargo.toml
Last active March 1, 2022 14:01
Rust WinAPI (windows-rs) process Privilege granter
[dependencies]
thiserror = "1.0.30"
[dependencies.windows]
version = "0.33.0"
features = [
"Win32_System_Threading",
"Win32_Foundation",
"Win32_Security",
"Win32_System_SystemServices"