-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathextension.json
44 lines (44 loc) · 1.26 KB
/
extension.json
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
44
{
"name": "threadless-inject",
"version": "0.0.0",
"command_name": "threadless-inject",
"extension_author": "@0xLegacyy",
"original_author": "@0xLegacyy",
"repo_url": "https://github.com/iiLegacyyii/ThreadlessInject-BOF",
"help": "Execute shellcode within a remote process via hooking function calls.",
"depends_on": "coff-loader",
"entrypoint": "go",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "dist/threadless-inject.o"
}
],
"arguments": [
{
"name": "pid",
"desc": "The PID of the process you want to dump.",
"type": "int",
"optional": false
},
{
"name": "dll-name",
"desc": "The name of the dll containing the exported function to hook.",
"type": "string",
"optional": false
},
{
"name": "function-name",
"desc": "The name of the function you would like to hook.",
"type": "string",
"optional": false
},
{
"name": "shellcode-path",
"desc": "Path to file containing shellcode.",
"type": "file",
"optional": false
}
]
}