mirror of
				https://github.com/Ylianst/MeshCentral.git
				synced 2025-03-09 15:40:18 +00:00 
			
		
		
		
	Fixed: Testing for a valid filename on a folder path causes plugins with views to fail to load associated views
This commit is contained in:
		
							parent
							
								
									fc75bff5ad
								
							
						
					
					
						commit
						222e8481d5
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		|  | @ -518,7 +518,8 @@ 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'); | ||||
|         if (obj.common.IsFilenameValid(path) !== true) { res.sendStatus(401); return; } | ||||
|         // 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); | ||||
|  | @ -530,7 +531,8 @@ 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'); | ||||
|         if (obj.common.IsFilenameValid(path) !== true) { res.sendStatus(401); return; } | ||||
|         // 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…
	
	Add table
		Add a link
		
	
		Reference in a new issue