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

Added network interface names escaping.

This commit is contained in:
Ylian Saint-Hilaire 2020-12-28 23:14:15 -08:00
parent cce68922d7
commit 8fc23995b9
3 changed files with 26 additions and 3 deletions

View file

@ -1164,6 +1164,14 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
// Check if network information is present
if ((command.netif2 == null) && (command.netif == null)) return;
// Escape any field names that have special characters
if (command.netif2 != null) {
for (var i in command.netif2) {
var esc = common.escapeFieldName(i);
if (esc !== i) { command.netif2[esc] = command.netif2[i]; delete command.netif2[i]; }
}
}
// Sent by the agent to update agent network interface information
delete command.action;
command.updateTime = Date.now();