-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemoteAdminMCPSharp.json
More file actions
94 lines (94 loc) · 2.74 KB
/
RemoteAdminMCPSharp.json
File metadata and controls
94 lines (94 loc) · 2.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"RemoteAdmin": {
"ReadOnly": true,
"AllowArbitraryCommands": false,
"RemoteOperationTimeoutSeconds": 60,
"WindowsInventoryPath": "remote_admin_windows_servers.json",
"LinuxInventoryPath": "remote_admin_linux_servers.json",
"RdgImportPath": null,
"ArbitraryCommandOutputCharLimit": 32000,
"AllowedServers": [],
"BlockedServers": [],
"Concurrency": {
"MaxConcurrentPerServer": 1,
"MaxConcurrentGlobal": 16,
"AcquireTimeoutSeconds": 30,
"MinIntervalPerServerMs": 0
},
"Operations": {
"WinStartService": false,
"WinStopService": false,
"WinRestartService": false,
"WinSetServiceStartupType": false,
"WinCreateService": false,
"WinDeleteService": false,
"WinKillProcess": false,
"WinWriteFile": false,
"WinAppendToFile": false,
"WinCreateFolder": false,
"WinDeleteFile": false,
"WinDeleteFolder": false,
"WinCopyPath": false,
"WinMovePath": false,
"WinIisStartSite": false,
"WinIisStopSite": false,
"WinIisDeleteSite": false,
"WinIisStartAppPool": false,
"WinIisStopAppPool": false,
"WinIisRecycleAppPool": false,
"WinIisDeleteAppPool": false,
"WinIisReset": false,
"WinRunCommand": false,
"LinuxStartService": false,
"LinuxStopService": false,
"LinuxRestartService": false,
"LinuxKillProcess": false,
"LinuxWriteFile": false,
"LinuxAppendToFile": false,
"LinuxCreateFolder": false,
"LinuxDeleteFile": false,
"LinuxDeleteFolder": false,
"LinuxCopyPath": false,
"LinuxMovePath": false,
"LinuxRunCommand": false
}
},
"Server": {
"Host": "localhost",
"Port": 5706,
"Path": "/mcp",
"WindowsServiceName": "RemoteAdminMCPSharp",
"Password": ""
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {SourceContext}: {Message:lj}{NewLine}{Exception}"
}
},
{
"Name": "File",
"Args": {
"path": "logs/remoteadminmcp-.log",
"rollingInterval": "Day",
"retainedFileCountLimit": 14,
"fileSizeLimitBytes": 52428800,
"rollOnFileSizeLimit": true,
"shared": true,
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {SourceContext}: {Message:lj}{NewLine}{Exception}"
}
}
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ]
}
}