-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
43 lines (39 loc) · 1.09 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
35
36
37
38
39
40
41
42
43
[package]
name = "blindsight"
version = "0.1.0"
authors = ["Marco Ivaldi <[email protected]>"]
edition = "2021"
description = "Red teaming tool to dump LSASS memory, bypassing common countermeasures."
homepage = "https://0xdeadbeef.info/"
repository = "https://github.com/0xdea/blindsight"
license = "MIT"
keywords = ["windows", "minidump", "mimikatz", "redteaming", "exploitation"]
categories = ["command-line-utilities"]
[dependencies]
sysinfo = "0.31"
rand = "0.8"
[dependencies.windows]
version = "0.57"
features = [
"Win32_Security",
"Win32_System_Threading",
"Win32_System_Diagnostics_Debug",
"Win32_Storage_FileSystem",
"Win32_System_Kernel",
"Win32_System_Memory",
]
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
doc_markdown = "allow"
wildcard_imports = "allow"
[profile.release]
# see https://github.com/johnthagen/min-sized-rust
strip = true
opt-level = "z"
lto = true
# codegen-units = 1
panic = "abort"