1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Added mpsHighSecurity option in config.json, #3910

This commit is contained in:
Ylian Saint-Hilaire 2022-04-23 13:17:12 -07:00
parent 5ef32633d8
commit fc60faefba
5 changed files with 268 additions and 28 deletions

View file

@ -36,6 +36,7 @@ const PROTOCOL_WEBVNC = 204;
// Construct a MSTSC Relay object, called upon connection
// This implementation does not have TLS support
// This is a bit of a hack as we are going to run the RDP connection thru a loopback connection.
// If the "node-rdpjs-2" module supported passing a socket, we would do something different.
module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) {
@ -282,7 +283,6 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) {
};
// Construct a SSH Relay object, called upon connection
module.exports.CreateSshRelay = function (parent, db, ws, req, args, domain) {
const Net = require('net');