-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
34 lines (31 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "deoptimizer"
version = "0.1.2"
edition = "2021"
license = "MIT"
# license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/EgeBalci/deoptimizer"
authors = ["Ege BALCI <[email protected]>"]
keywords = ["evasion", "malware", "obfuscation", "optimization", "detection"]
categories = ["command-line-utilities", "compilers"]
description = "This tool is a machine code de-optimizer. By transforming/mutating the machine code instructions to their functional equivalents it makes possible to bypass pattern-based detection mechanisms used by security products."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.6"
bitflags = "2.4.1"
chrono = "0.4.31"
clap = { version = "4.4.7", features = ["derive", "cargo"] }
colored = "2.0.4"
ctrlc = "3.4.1"
hex = "0.4.3"
hexdump = "0.1.1"
iced-x86 = { version = "1.20.0", features = ["code_asm"] }
log = "0.4.20"
rand = "0.8.5"
regex = "1.10.5"
thiserror = "1.0.50"
# [profile.release]
# rustc-link-lib = ["libkeystone.a"]
# rustc-link-search = ["/usr/lib/"]
# rustc-flags = "-L /lib/"