[package]
edition = "2024"
name = "extract-shellcode"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small Rust toolkit for pulling shellcode out of a Windows PE and (optionally) executing it in-memory"
readme = "README.md"
keywords = [
"shellcode",
"windows",
"pe",
"portable-executable",
"reverse-engineering",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
"os::windows-apis",
"parsing",
]
license = "MIT"
repository = "https://github.com/11philip22/extract-shellcode"
[[bin]]
name = "extract_shellcode"
path = "src/bin/extract_shellcode.rs"
[[bin]]
name = "test_shellcode"
path = "src/bin/test_shellcode.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.goblin]
version = "0.10.4"