-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcpkg.json
More file actions
42 lines (42 loc) · 1 KB
/
Copy pathvcpkg.json
File metadata and controls
42 lines (42 loc) · 1 KB
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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "abcpwn",
"version": "0.1.0",
"description": "binary exploitation toolkit",
"homepage": "https://github.com/manop55555/abcpwn",
"documentation": "https://github.com/manop55555/abcpwn/blob/main/docs/COMMANDS.md",
"license": "Apache-2.0",
"supports": "(linux | osx) & (x64 | arm64)",
"dependencies": [
"lief",
{
"name": "capstone",
"features": [
"arm",
"arm64",
"mips",
"ppc",
"riscv",
"x86"
]
},
"cli11",
"nlohmann-json",
"spdlog",
"catch2"
],
"features": {
"network": {
"description": "Enable network features (libc download, pwninit)",
"dependencies": ["curl"]
},
"fuzz": {
"description": "Build libFuzzer harnesses",
"dependencies": []
},
"unicorn": {
"description": "Enable Unicorn for seccomp emulation",
"dependencies": ["unicorn"]
}
}
}