-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathextension.json
More file actions
60 lines (59 loc) · 1.28 KB
/
extension.json
File metadata and controls
60 lines (59 loc) · 1.28 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
60
{
"name": "sql-agentcmd",
"version": "0.0.0",
"command_name": "sql-agentcmd",
"extension_author": "CleverNamesTaken",
"original_author": "Tw1sm",
"repo_url": "https://github.com/Tw1sm/SQL-BOF",
"help": "Execute a system command using agent jobs",
"long_help": "",
"depends_on": "coff-loader",
"entrypoint": "go",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "agentcmd.x64.o"
},
{
"os": "windows",
"arch": "386",
"path": "agentcmd.x86.o"
}
],
"arguments": [
{
"name": "server",
"desc": "SQL server to connect to",
"type": "string",
"optional": false
},
{
"name": "command",
"desc": "System command to execute via agent job",
"type": "string",
"optional": false
},
{
"name": "database",
"desc": "Optional: Database to use",
"type": "string",
"optional": true,
"default":""
},
{
"name": "linkedserver",
"desc": "Optional: Execute through linked server",
"type": "string",
"optional": true,
"default":""
},
{
"name": "impersonate",
"desc": "Optional: User to impersonate during execution",
"type": "string",
"optional": true,
"default":""
}
]
}