diff --git a/LICENSE b/LICENSE index 46677326..cf8faf5a 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 0b3284dc..3de887d9 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 fb888f18..679d7ae3 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 7e638d16..5bd8d45d 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 250d2563..ba37a4d3 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 bea0098e..701fec6d 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 c7ae7fbd..4761e352 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 0eb762d3..7b733965 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 dc8ae61e..5623ebda 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 f9445ea4..717fd4c9 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 23c60f96..cf82c02c 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 80e991c0..22124358 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 670fd71d..d154fbb8 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 250d2563..ba37a4d3 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 2a9a4342..0791a124 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 d3281842..179ef1d3 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 c7ae7fbd..4761e352 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 fcc0985b..efe5248a 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 a2dabcb3..c9af5816 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 a4574564..d9b4555d 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 30c5f133..fa3681d9 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 32ae289f..bb0530d2 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 0f650d4a..59300a53 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 0b2af708..d268b292 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 eda0a2ba..1de8caa3 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 81487f68..1e8bc464 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 2bfa5be6..b76b6c5d 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 d7fb21b6..bc39e5ba 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 883b5a84..3be2dc3e 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 844c75fd..2f902259 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 2c43a0e9..94b991e7 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 34eb87f8..67024823 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 3225d4c7..9c441952 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 5a836edb..fdc3af4f 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 ab045383..c37de185 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 6b582400..e081ce3c 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 ccf5e46d..cc4541d9 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 db85beb9..ec65b333 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 34a5b848..4bf66402 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 13e08826..49e37084 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 9ea32501..f9afe43f 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 fb65eb36..cd4cf0e7 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 903d5344..4bc71b02 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 345c1fa8..b9df3234 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 51fc7927..d835567c 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 bd7635c3..09cc6ad6 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 263735bf..69ddb620 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 3cede54f..376b29d3 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 1ee4bdf1..c0691e5d 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 7c0e9cce..41b919fd 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 597e5513..8e2d1be1 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 7ae01aa2..5a11d19e 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 c985452c..9cc465da 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 e1900dae..a132f087 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 5816cd57..c693074b 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 e14583bd..8c49666e 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 435bd5d0..87494d97 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 d737236e..9df235cc 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 db490352..8c5842a1 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 f6e92b0f..3e1048dd 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 8363002d..3d8c5820 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 ad228eb4..ceee32f5 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 8d0458d4..cf9011e4 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 0af557a9..2b41f558 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 */