-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
49 lines (49 loc) · 1023 Bytes
/
config.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
45
46
47
48
49
{
"port": 3001,
"cors": [
"*:*"
],
"auth": {
"default": {
"type": "salty-auth",
"timeout": 5000,
"username": "websshd",
"password": "b8240ca4f47411d6cbbd2e5d364b92713656200cad8ba2f4fb6243b9ca08e1100932cef95d4596cb62aca51aa99b1aed19064910b6dae960207f4593cb9450db",
"salt": "7S=Q`-~TM,iUD.>]"
}
},
"targets": [
{
"type": "local",
"nsp": "/cloush",
"auth": "default",
"shell": "cmd.exe",
"conty": false
},
{
"type": "local",
"nsp": "/local",
"auth": "default",
"shell": "powershell.exe",
"conty": false
},
{
"nsp": "/remote1",
"type": "remote",
"auth": "default",
"host": "127.0.0.1",
"port": "22",
"username": "cloush",
"password": "ohMywebsshd"
},
{
"nsp": "/remote2",
"type": "remote",
"auth": "default",
"host": "127.0.0.1",
"port": "22",
"username": "cloush",
"privateKey": "id_rsa"
}
]
}