forked from fortra/nanodump
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.json
45 lines (44 loc) · 1.17 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": "nanodump",
"version": "0.0.0",
"command_name": "nanodump",
"extension_author": "@moloch--",
"original_author": "@HelpSystems",
"repo_url": "https://github.com/sliverarmory/nanodump",
"help": "A Beacon Object File that creates a minidump of the LSASS process.",
"depends_on": "coff-loader",
"entrypoint": "go",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "nanodump.x64.o"
}
],
"arguments": [
{
"name": "pid",
"desc": "The PID of the process you want to dump.",
"type": "int",
"optional": false
},
{
"name": "dump-name",
"desc": "The name of the dump file.",
"type": "string",
"optional": false
},
{
"name": "write-file",
"desc": "1 = write file, 0 = fileless",
"type": "int",
"optional": false
},
{
"name": "signature",
"desc": "Signature used for evasion, PMDM = default",
"type": "string",
"optional": false
}
]
}