forked from outflanknl/C2-Tool-Collection
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathextension.json
43 lines (43 loc) · 994 Bytes
/
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
{
"name": "C2-Tool-Collection KerbHash BOF",
"version": "v0.0.0",
"command_name": "c2tc-kerbhash",
"extension_author": "c2biz",
"original_author": "outflanknl",
"repo_url": "https://github.com/sliverarmory/C2-Tool-Collection",
"help": "port of the Mimikatz/Rubeus hash command",
"depends_on": "coff-loader",
"entrypoint": "go",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "KerbHash.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "KerbHash.x86.o"
}
],
"arguments": [
{
"name": "password",
"desc": "password",
"type": "wstring",
"optional": false
},
{
"name": "username",
"desc": "username",
"type": "wstring",
"optional": false
},
{
"name": "domain.fqdn",
"desc": "domain.fqdn",
"type": "wstring",
"optional": false
}
]
}