-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathextension.json
More file actions
59 lines (59 loc) · 1.26 KB
/
extension.json
File metadata and controls
59 lines (59 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sql-columns",
"version": "0.0.0",
"command_name": "sql-columns",
"extension_author": "CleverNamesTaken",
"original_author": "Tw1sm",
"repo_url": "https://github.com/Tw1sm/SQL-BOF",
"help": "Enumerate columns within a table",
"long_help": "",
"depends_on": "coff-loader",
"entrypoint": "go",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "columns.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "columns.x86.o"
}
],
"arguments": [
{
"name": "server",
"desc": "SQL server to connect to",
"type": "string",
"optional": false
},
{
"name": "table",
"desc": "Table to enumerate columns from",
"type": "string",
"optional": false
},
{
"name": "database",
"desc": "Optional: Database to use",
"type": "string",
"optional": true,
"default":""
},
{
"name": "linkedserver",
"desc": "Optional: Execute query through linked server",
"type": "string",
"optional": true,
"default":""
},
{
"name": "impersonate",
"desc": "Optional: User to impersonate during execution",
"type": "string",
"optional": true,
"default":""
}
]
}