mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-22 04:33:16 +03:00
Fixed plugin path check.
This commit is contained in:
parent
a0b9703e0e
commit
b6eb9c01df
@ -518,8 +518,6 @@ module.exports.pluginHandler = function (parent) {
|
||||
obj.handleAdminReq = function (req, res, user, serv) {
|
||||
if ((req.query.pin == null) || (obj.common.isAlphaNumeric(req.query.pin) !== true)) { res.sendStatus(401); return; }
|
||||
var path = obj.path.join(obj.pluginPath, req.query.pin, 'views');
|
||||
// path isn't a filename, it is a folder path
|
||||
//if (obj.common.IsFilenameValid(path) !== true) { res.sendStatus(401); return; }
|
||||
serv.app.set('views', path);
|
||||
if ((obj.plugins[req.query.pin] != null) && (typeof obj.plugins[req.query.pin].handleAdminReq == 'function')) {
|
||||
obj.plugins[req.query.pin].handleAdminReq(req, res, user);
|
||||
@ -531,8 +529,6 @@ module.exports.pluginHandler = function (parent) {
|
||||
obj.handleAdminPostReq = function (req, res, user, serv) {
|
||||
if ((req.query.pin == null) || (obj.common.isAlphaNumeric(req.query.pin) !== true)) { res.sendStatus(401); return; }
|
||||
var path = obj.path.join(obj.pluginPath, req.query.pin, 'views');
|
||||
// path isn't a filename, it is a folder path
|
||||
//if (obj.common.IsFilenameValid(path) !== true) { res.sendStatus(401); return; }
|
||||
serv.app.set('views', path);
|
||||
if ((obj.plugins[req.query.pin] != null) && (typeof obj.plugins[req.query.pin].handleAdminPostReq == 'function')) {
|
||||
obj.plugins[req.query.pin].handleAdminPostReq(req, res, user);
|
||||
|
Loading…
Reference in New Issue
Block a user