From b195852399f7aaa0e7bb625fdf3630c59a738f49 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 9 Jan 2021 14:31:09 -0800 Subject: [PATCH] Updated file headers. --- LICENSE | 2 +- agents/meshcmd.js | 2 +- agents/meshcore.js | 57 +++++++------------ agents/meshinstall-linux.js | 2 +- agents/modules_meshcmd/amt-apfclient.js | 4 +- agents/modules_meshcmd/amt-lme.js | 2 +- agents/modules_meshcmd/amt-mei.js | 2 +- agents/modules_meshcmd/amt-scanner.js | 2 +- agents/modules_meshcmd/amt-wsman-duk.js | 2 +- agents/modules_meshcmd/amt-wsman.js | 2 +- agents/modules_meshcmd/amt-xml.js | 2 +- agents/modules_meshcmd/amt.js | 2 +- agents/modules_meshcmd/sysinfo.js | 2 +- agents/modules_meshcore/amt-apfclient.js | 4 +- agents/modules_meshcore/amt-lme.js | 2 +- agents/modules_meshcore/amt-manage.js | 2 +- agents/modules_meshcore/amt-mei.js | 2 +- agents/modules_meshcore/monitor-border.js | 2 +- agents/modules_meshcore/sysinfo.js | 2 +- .../modules_meshcore/wifi-scanner-windows.js | 2 +- agents/modules_meshcore/wifi-scanner.js | 2 +- agents/modules_meshcore/win-console.js | 2 +- agents/modules_meshcore/win-info.js | 2 +- agents/testsuite.js | 2 +- agents/tinycore.js | 2 +- amt-ider.js | 2 +- amt/amt-ider-module.js | 2 +- amt/amt-ider.js | 2 +- amt/amt-redir-mesh.js | 2 +- amt/amt-setupbin.js | 2 +- amt/amt-wsman-comm.js | 2 +- amt/amt-wsman.js | 2 +- amt/amt-xml.js | 2 +- amt/amt.js | 2 +- amtevents.js | 2 +- amtmanager.js | 2 +- amtscanner.js | 2 +- amtscript.js | 2 +- certoperations.js | 2 +- common.js | 2 +- db.js | 2 +- exeHandler.js | 2 +- interceptor.js | 2 +- letsencrypt.js | 2 +- mcrec.js | 2 +- meshaccelerator.js | 2 +- meshagent.js | 2 +- meshcentral.js | 2 +- meshdesktopmultiplex.js | 2 +- meshdevicefile.js | 2 +- meshmail.js | 2 +- meshrelay.js | 2 +- meshscanner.js | 2 +- meshsms.js | 2 +- meshuser.js | 2 +- mpsserver.js | 2 +- mqttbroker.js | 2 +- mstsc.js | 2 +- multiserver.js | 2 +- redirserver.js | 2 +- swarmserver.js | 2 +- translate/translate.js | 2 +- webserver.js | 2 +- winservice.js | 2 +- 64 files changed, 84 insertions(+), 103 deletions(-) diff --git a/LICENSE b/LICENSE index 4667732687..cf8faf5a36 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2017-2020 Intel Corporation + Copyright 2017-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/meshcmd.js b/agents/meshcmd.js index 0b3284dcf4..3de887d961 100644 --- a/agents/meshcmd.js +++ b/agents/meshcmd.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/meshcore.js b/agents/meshcore.js index fb888f1838..679d7ae30b 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -488,31 +488,22 @@ function createMeshCore(agent) { mesh.SendCommand(msg); } - // If we are running in Duktape, agent will be null - if (agent == null) { - // Running in native agent, Import libraries - db = require('SimpleDataStore').Shared(); - sha = require('SHA256Stream'); - mesh = require('MeshAgent'); - childProcess = require('child_process'); - if (mesh.hasKVM == 1) { // if the agent is compiled with KVM support - // Check if this computer supports a desktop - try - { - if ((process.platform == 'win32') || (process.platform == 'darwin') || (require('monitor-info').kvm_x11_support)) { - meshCoreObj.caps |= 1; meshCoreObjChanged(); - } else if (process.platform == 'linux' || process.platform == 'freebsd') { - require('monitor-info').on('kvmSupportDetected', function (value) { meshCoreObj.caps |= 1; meshCoreObjChanged(); }); - } - } catch (e) { } - } - } else { - // Running in nodejs - meshCoreObj.value += '-NodeJS'; - meshCoreObj.caps = 8; - mesh = agent.getMeshApi(); + // Import libraries + db = require('SimpleDataStore').Shared(); + sha = require('SHA256Stream'); + mesh = require('MeshAgent'); + childProcess = require('child_process'); + if (mesh.hasKVM == 1) { // if the agent is compiled with KVM support + // Check if this computer supports a desktop + try + { + if ((process.platform == 'win32') || (process.platform == 'darwin') || (require('monitor-info').kvm_x11_support)) { + meshCoreObj.caps |= 1; meshCoreObjChanged(); + } else if (process.platform == 'linux' || process.platform == 'freebsd') { + require('monitor-info').on('kvmSupportDetected', function (value) { meshCoreObj.caps |= 1; meshCoreObjChanged(); }); + } + } catch (e) { } } - mesh.DAIPC = obj.DAIPC; /* @@ -3945,21 +3936,11 @@ function createMeshCore(agent) { } // -// Module startup +// Startup for Duktape only. This file is not intended to run in NodeJS. // - try { - var xexports = null, mainMeshCore = null; - try { xexports = module.exports; } catch (e) { } - - if (xexports != null) { - // If we are running within NodeJS, export the core - module.exports.createMeshCore = createMeshCore; - } else { - // If we are not running in NodeJS, launch the core - mainMeshCore = createMeshCore(); - mainMeshCore.start(null); - } + mainMeshCore = createMeshCore(); + mainMeshCore.start(null); } catch (e) { require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: "uncaughtException2: " + ex }); } diff --git a/agents/meshinstall-linux.js b/agents/meshinstall-linux.js index 7e638d16fc..5bd8d45d3c 100644 --- a/agents/meshinstall-linux.js +++ b/agents/meshinstall-linux.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt-apfclient.js b/agents/modules_meshcmd/amt-apfclient.js index 250d256328..ba37a4d367 100644 --- a/agents/modules_meshcmd/amt-apfclient.js +++ b/agents/modules_meshcmd/amt-apfclient.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ limitations under the License. /** * @description APF/CIRA Client for Duktape * @author Joko Sastriawan & Ylian Saint-Hilaire -* @copyright Intel Corporation 2020 +* @copyright Intel Corporation 2020-2021 * @license Apache-2.0 * @version v0.0.2 */ diff --git a/agents/modules_meshcmd/amt-lme.js b/agents/modules_meshcmd/amt-lme.js index bea0098ecf..701fec6d7a 100644 --- a/agents/modules_meshcmd/amt-lme.js +++ b/agents/modules_meshcmd/amt-lme.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt-mei.js b/agents/modules_meshcmd/amt-mei.js index c7ae7fbdd5..4761e352a6 100644 --- a/agents/modules_meshcmd/amt-mei.js +++ b/agents/modules_meshcmd/amt-mei.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt-scanner.js b/agents/modules_meshcmd/amt-scanner.js index 0eb762d34e..7b7339655c 100644 --- a/agents/modules_meshcmd/amt-scanner.js +++ b/agents/modules_meshcmd/amt-scanner.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt-wsman-duk.js b/agents/modules_meshcmd/amt-wsman-duk.js index dc8ae61e6e..5623ebda9e 100644 --- a/agents/modules_meshcmd/amt-wsman-duk.js +++ b/agents/modules_meshcmd/amt-wsman-duk.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt-wsman.js b/agents/modules_meshcmd/amt-wsman.js index f9445ea456..717fd4c963 100644 --- a/agents/modules_meshcmd/amt-wsman.js +++ b/agents/modules_meshcmd/amt-wsman.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt-xml.js b/agents/modules_meshcmd/amt-xml.js index 23c60f96ac..cf82c02c98 100644 --- a/agents/modules_meshcmd/amt-xml.js +++ b/agents/modules_meshcmd/amt-xml.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/amt.js b/agents/modules_meshcmd/amt.js index 80e991c0fe..2212435873 100644 --- a/agents/modules_meshcmd/amt.js +++ b/agents/modules_meshcmd/amt.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcmd/sysinfo.js b/agents/modules_meshcmd/sysinfo.js index 670fd71d8c..d154fbb88d 100644 --- a/agents/modules_meshcmd/sysinfo.js +++ b/agents/modules_meshcmd/sysinfo.js @@ -1,5 +1,5 @@ /* -Copyright 2019-2020 Intel Corporation +Copyright 2019-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/amt-apfclient.js b/agents/modules_meshcore/amt-apfclient.js index 250d256328..ba37a4d367 100644 --- a/agents/modules_meshcore/amt-apfclient.js +++ b/agents/modules_meshcore/amt-apfclient.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ limitations under the License. /** * @description APF/CIRA Client for Duktape * @author Joko Sastriawan & Ylian Saint-Hilaire -* @copyright Intel Corporation 2020 +* @copyright Intel Corporation 2020-2021 * @license Apache-2.0 * @version v0.0.2 */ diff --git a/agents/modules_meshcore/amt-lme.js b/agents/modules_meshcore/amt-lme.js index 2a9a434259..0791a124e7 100644 --- a/agents/modules_meshcore/amt-lme.js +++ b/agents/modules_meshcore/amt-lme.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/amt-manage.js b/agents/modules_meshcore/amt-manage.js index d32818421b..179ef1d31e 100644 --- a/agents/modules_meshcore/amt-manage.js +++ b/agents/modules_meshcore/amt-manage.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/amt-mei.js b/agents/modules_meshcore/amt-mei.js index c7ae7fbdd5..4761e352a6 100644 --- a/agents/modules_meshcore/amt-mei.js +++ b/agents/modules_meshcore/amt-mei.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/monitor-border.js b/agents/modules_meshcore/monitor-border.js index fcc0985b15..efe5248ac2 100644 --- a/agents/modules_meshcore/monitor-border.js +++ b/agents/modules_meshcore/monitor-border.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/sysinfo.js b/agents/modules_meshcore/sysinfo.js index a2dabcb3fd..c9af581642 100644 --- a/agents/modules_meshcore/sysinfo.js +++ b/agents/modules_meshcore/sysinfo.js @@ -1,5 +1,5 @@ /* -Copyright 2019-2020 Intel Corporation +Copyright 2019-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/wifi-scanner-windows.js b/agents/modules_meshcore/wifi-scanner-windows.js index a4574564be..d9b4555dcb 100644 --- a/agents/modules_meshcore/wifi-scanner-windows.js +++ b/agents/modules_meshcore/wifi-scanner-windows.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/wifi-scanner.js b/agents/modules_meshcore/wifi-scanner.js index 30c5f1332c..fa3681d9cf 100644 --- a/agents/modules_meshcore/wifi-scanner.js +++ b/agents/modules_meshcore/wifi-scanner.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/win-console.js b/agents/modules_meshcore/win-console.js index 32ae289fab..bb0530d223 100644 --- a/agents/modules_meshcore/win-console.js +++ b/agents/modules_meshcore/win-console.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/modules_meshcore/win-info.js b/agents/modules_meshcore/win-info.js index 0f650d4a17..59300a53fe 100644 --- a/agents/modules_meshcore/win-info.js +++ b/agents/modules_meshcore/win-info.js @@ -1,5 +1,5 @@ /* -Copyright 2019-2020 Intel Corporation +Copyright 2019-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/testsuite.js b/agents/testsuite.js index 0b2af7080f..d268b29260 100644 --- a/agents/testsuite.js +++ b/agents/testsuite.js @@ -1,5 +1,5 @@ /* -Copyright 2017-2020 Intel Corporation +Copyright 2017-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/agents/tinycore.js b/agents/tinycore.js index eda0a2baff..1de8caa307 100644 --- a/agents/tinycore.js +++ b/agents/tinycore.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt-ider.js b/amt-ider.js index 81487f684d..1e8bc464c9 100644 --- a/amt-ider.js +++ b/amt-ider.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Server IDER handler * @author Ylian Saint-Hilaire & Bryan Roe -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/amt/amt-ider-module.js b/amt/amt-ider-module.js index 2bfa5be601..b76b6c5d3e 100644 --- a/amt/amt-ider-module.js +++ b/amt/amt-ider-module.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt-ider.js b/amt/amt-ider.js index d7fb21b655..bc39e5ba6c 100644 --- a/amt/amt-ider.js +++ b/amt/amt-ider.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt-redir-mesh.js b/amt/amt-redir-mesh.js index 883b5a840b..3be2dc3e3f 100644 --- a/amt/amt-redir-mesh.js +++ b/amt/amt-redir-mesh.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt-setupbin.js b/amt/amt-setupbin.js index 844c75fd20..2f902259b0 100644 --- a/amt/amt-setupbin.js +++ b/amt/amt-setupbin.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt-wsman-comm.js b/amt/amt-wsman-comm.js index 2c43a0e974..94b991e7aa 100644 --- a/amt/amt-wsman-comm.js +++ b/amt/amt-wsman-comm.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt-wsman.js b/amt/amt-wsman.js index 34eb87f8f7..67024823fd 100644 --- a/amt/amt-wsman.js +++ b/amt/amt-wsman.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt-xml.js b/amt/amt-xml.js index 3225d4c774..9c44195266 100644 --- a/amt/amt-xml.js +++ b/amt/amt-xml.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amt/amt.js b/amt/amt.js index 5a836edb77..fdc3af4fe4 100644 --- a/amt/amt.js +++ b/amt/amt.js @@ -1,5 +1,5 @@ /* -Copyright 2020 Intel Corporation +Copyright 2020-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/amtevents.js b/amtevents.js index ab04538388..c37de1859b 100644 --- a/amtevents.js +++ b/amtevents.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Intel(R) AMT Event Parser * @author Ylian Saint-Hilaire & Bryan Roe -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/amtmanager.js b/amtmanager.js index 6b58240009..e081ce3c3f 100644 --- a/amtmanager.js +++ b/amtmanager.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Intel AMT manager * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/amtscanner.js b/amtscanner.js index ccf5e46d98..cc4541d96b 100644 --- a/amtscanner.js +++ b/amtscanner.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Intel(R) AMT Local Scanner * @author Ylian Saint-Hilaire & Joko Sastriawan -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/amtscript.js b/amtscript.js index db85beb9a3..ec65b3334b 100644 --- a/amtscript.js +++ b/amtscript.js @@ -1,7 +1,7 @@ /** * @fileoverview Script Compiler / Decompiler / Runner * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.1.0e */ diff --git a/certoperations.js b/certoperations.js index 34a5b84877..4bf66402f0 100644 --- a/certoperations.js +++ b/certoperations.js @@ -1,7 +1,7 @@ /** * @description Certificate generator * @author Joko Sastriawan / Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/common.js b/common.js index 13e08826a5..49e3708408 100644 --- a/common.js +++ b/common.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Common Library * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/db.js b/db.js index 9ea3250129..f9afe43fb3 100644 --- a/db.js +++ b/db.js @@ -1,7 +1,7 @@ /** * @description MeshCentral database module * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.2 */ diff --git a/exeHandler.js b/exeHandler.js index fb65eb3654..cd4cf0e782 100644 --- a/exeHandler.js +++ b/exeHandler.js @@ -1,5 +1,5 @@ /* -Copyright 2018-2020 Intel Corporation +Copyright 2018-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/interceptor.js b/interceptor.js index 903d53441e..4bc71b02f7 100644 --- a/interceptor.js +++ b/interceptor.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Intel(R) AMT Interceptor * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.3 */ diff --git a/letsencrypt.js b/letsencrypt.js index 345c1fa803..b9df32349d 100644 --- a/letsencrypt.js +++ b/letsencrypt.js @@ -1,7 +1,7 @@ /** * @description MeshCentral letsEncrypt module, uses GreenLock to do all the work. * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.2 */ diff --git a/mcrec.js b/mcrec.js index 51fc7927fd..d835567c70 100644 --- a/mcrec.js +++ b/mcrec.js @@ -1,7 +1,7 @@ /** * @description MeshCentral MeshAgent * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2019-2020 +* @copyright Intel Corporation 2019-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshaccelerator.js b/meshaccelerator.js index bd7635c3b8..09cc6ad678 100644 --- a/meshaccelerator.js +++ b/meshaccelerator.js @@ -1,7 +1,7 @@ /** * @description MeshCentral accelerator * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshagent.js b/meshagent.js index 263735bf9c..69ddb620a4 100644 --- a/meshagent.js +++ b/meshagent.js @@ -1,7 +1,7 @@ /** * @description MeshCentral MeshAgent communication module * @author Ylian Saint-Hilaire & Bryan Roe -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshcentral.js b/meshcentral.js index 3cede54fc4..376b29d38f 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -1,7 +1,7 @@ /** * @description MeshCentral main module * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshdesktopmultiplex.js b/meshdesktopmultiplex.js index 1ee4bdf1b7..c0691e5ded 100644 --- a/meshdesktopmultiplex.js +++ b/meshdesktopmultiplex.js @@ -1,7 +1,7 @@ /** * @description MeshCentral remote desktop multiplexor * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshdevicefile.js b/meshdevicefile.js index 7c0e9ccefa..41b919fdc9 100644 --- a/meshdevicefile.js +++ b/meshdevicefile.js @@ -1,7 +1,7 @@ /** * @description MeshCentral device file download relay module * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshmail.js b/meshmail.js index 597e5513ad..8e2d1be1d6 100644 --- a/meshmail.js +++ b/meshmail.js @@ -1,7 +1,7 @@ /** * @description MeshCentral e-mail server communication modules * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshrelay.js b/meshrelay.js index 7ae01aa28a..5a11d19e86 100644 --- a/meshrelay.js +++ b/meshrelay.js @@ -1,7 +1,7 @@ /** * @description MeshCentral connection relay module * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshscanner.js b/meshscanner.js index c985452c27..9cc465da55 100644 --- a/meshscanner.js +++ b/meshscanner.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Mesh Agent Local Scanner * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshsms.js b/meshsms.js index e1900dae5e..a132f08729 100644 --- a/meshsms.js +++ b/meshsms.js @@ -1,7 +1,7 @@ /** * @description MeshCentral SMS gateway communication module * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/meshuser.js b/meshuser.js index 5816cd5762..c693074b6f 100644 --- a/meshuser.js +++ b/meshuser.js @@ -1,7 +1,7 @@ /** * @description MeshCentral MeshAgent * @author Ylian Saint-Hilaire & Bryan Roe -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/mpsserver.js b/mpsserver.js index e14583bd2b..8c49666e4a 100644 --- a/mpsserver.js +++ b/mpsserver.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Intel(R) AMT MPS server * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/mqttbroker.js b/mqttbroker.js index 435bd5d01d..87494d97bf 100644 --- a/mqttbroker.js +++ b/mqttbroker.js @@ -1,7 +1,7 @@ /** * @description MQTT broker reference implementation based on AEDES * @author Joko Banu Sastriawan, Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/mstsc.js b/mstsc.js index d737236ebd..9df235cc51 100644 --- a/mstsc.js +++ b/mstsc.js @@ -1,7 +1,7 @@ /** * @description MeshCentral MSTSC relay * @author Ylian Saint-Hilaire & Bryan Roe -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/multiserver.js b/multiserver.js index db490352e8..8c5842a1cd 100644 --- a/multiserver.js +++ b/multiserver.js @@ -1,7 +1,7 @@ /** * @description MeshCentral Multi-Server Support * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/redirserver.js b/redirserver.js index f6e92b0fcc..3e1048ddf6 100644 --- a/redirserver.js +++ b/redirserver.js @@ -1,7 +1,7 @@ /** * @description Meshcentral web server * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.2 */ diff --git a/swarmserver.js b/swarmserver.js index 8363002d6f..3d8c582067 100644 --- a/swarmserver.js +++ b/swarmserver.js @@ -1,7 +1,7 @@ /** * @description MeshCentral v1 legacy Swarm Server, used to update agents and get them on MeshCentral2 * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/translate/translate.js b/translate/translate.js index ad228eb43a..ceee32f536 100644 --- a/translate/translate.js +++ b/translate/translate.js @@ -1,7 +1,7 @@ /** * @description MeshCentral MeshAgent * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2019-2020 +* @copyright Intel Corporation 2019-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/webserver.js b/webserver.js index 8d0458d49b..cf9011e42a 100644 --- a/webserver.js +++ b/webserver.js @@ -1,7 +1,7 @@ /** * @description MeshCentral web server * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */ diff --git a/winservice.js b/winservice.js index 0af557a9b7..2b41f55887 100644 --- a/winservice.js +++ b/winservice.js @@ -1,7 +1,7 @@ /** * @description Windows Service Launcher * @author Ylian Saint-Hilaire -* @copyright Intel Corporation 2018-2020 +* @copyright Intel Corporation 2018-2021 * @license Apache-2.0 * @version v0.0.1 */