Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meshctrl.js throws missing netif error on deviceInfo read #6097

Closed
timaw7 opened this issue May 16, 2024 · 10 comments
Closed

meshctrl.js throws missing netif error on deviceInfo read #6097

timaw7 opened this issue May 16, 2024 · 10 comments
Assignees

Comments

@timaw7
Copy link

timaw7 commented May 16, 2024

Describe the bug

I'm attempting to use meshctrls.js script to trigger API commands to the server. I've started with the deviceInfo command, but this is throwing errors on specific devices but not on others. Just to note, I've been able to modify it to work, but it is having unexpected results and requires someone more familiar with the software to take a look.

This is the thrown error on an attempted run for one device. Another functioning device is noted below.

/home/meshctrl.js:2837
    if (network.netif != null) {
                ^

TypeError: Cannot read properties of null (reading 'netif')
    at displayDeviceInfo (/home/meshctrl.js:2837:17)
    at WebSocket.incoming (/home/meshctrl.js:2055:60)
    at WebSocket.emit (node:events:513:28)
    at Receiver.receiverOnMessage (/home/node_modules/ws/lib/websocket.js:1209:20)
    at Receiver.emit (node:events:513:28)
    at /home/node_modules/ws/lib/receiver.js:608:16
    at node:internal/process/task_queues:140:7
    at AsyncResource.runInAsyncScope (node:async_hooks:203:9)
    at AsyncResource.runMicrotask (node:internal/process/task_queues:137:8)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)

To Reproduce
Steps to reproduce the behavior:

  1. Pull the latest meshctrl.js from the server (v1.1.22) and a node ID.
  2. Run this command node meshctrl.js --url wss://SERVER:443?key=KEY --loginuser "USER" --loginpass "PASSWORD" --token TOKEN deviceInfo --id "NODEID"
  3. See resulting error

Expected behavior

I would expect the following result. I was able with slight modification to the script above, run the above command and produce device Info. The modifications are down below. This should eliminate any concern of authentication or errors in the parameters.

--- General ---
  Server Name: SERVER
  Computer Name: COMPUTER-1
  IP Address: XXX.XXX.XXX.XXX
  Icon: 2
--- Operating System ---
  Name: COMPUTER-1
  Version: Rocky Linux 9.3 
--- Mesh Agent ---
  Mesh Agent: Linux 64bit
  Last agent connection: Connected now

Modifications were to comment out the entire networking blocks for .netif and .netif2 lines 2836 to 2907.

     // Networking
    // if (network.netif != null) {
    //     var output = {}, outputCount = 0, minfo = {};
    //     for (var i in network.netif) {
    //         var m = network.netif[i], moutput = {}, moutputCount = 0;
    //         if (m.desc) { moutput["Description"] = m.desc; moutputCount++; }
    //         if (m.mac) {
    //             if (m.gatewaymac) {
    //                 moutput["MAC Layer"] = format("MAC: {0}, Gateway: {1}", m.mac, m.gatewaymac); moutputCount++;
    //             } else {
    //                 moutput["MAC Layer"] = format("MAC: {0}", m.mac); moutputCount++;
    //             }
    //         }
    //         if (m.v4addr && (m.v4addr != '0.0.0.0')) {
    //             if (m.v4gateway && m.v4mask) {
    //                 moutput["IPv4 Layer"] = format("IP: {0}, Mask: {1}, Gateway: {2}", m.v4addr, m.v4mask, m.v4gateway); moutputCount++;
    //             } else {
    //                 moutput["IPv4 Layer"] = format("IP: {0}", m.v4addr); moutputCount++;
    //             }
    //         }
    //         if (moutputCount > 0) { minfo[m.name + (m.dnssuffix ? (', ' + m.dnssuffix) : '')] = moutput; info["Networking"] = minfo; }
    //     }
    // }

    // if (network.netif2 != null) {
    //     var minfo = {};
    //     for (var i in network.netif2) {
    //         var m = network.netif2[i], moutput = {}, moutputCount = 0;

    //         if (Array.isArray(m) == false ||
    //             m.length < 1 ||
    //             m[0] == null ||
    //             ((typeof m[0].mac == 'string') && (m[0].mac.startsWith('00:00:00:00')))
    //         )
    //             continue;

    //         var ifTitle = '' + i;
    //         if (m[0].fqdn != null && m[0].fqdn != '') ifTitle += ', ' + m[0].fqdn;

    //         if (typeof m[0].mac == 'string') {
    //             if (m[0].gatewaymac) {
    //                 moutput['MAC Layer'] = format("MAC: {0}, Gateway: {1}", m[0].mac, m[0].gatewaymac);
    //             } else {
    //                 moutput['MAC Layer'] = format("MAC: {0}", m[0].mac);
    //             }
    //             moutputCount++;
    //         }

    //         moutput['IPv4 Layer'] = '';
    //         moutput['IPv6 Layer'] = '';
    //         for (var j = 0; j < m.length; j++) {
    //             var iplayer = m[j];
    //             if (iplayer.family == 'IPv4' || iplayer.family == 'IPv6') {
    //                 if (iplayer.gateway && iplayer.netmask) {
    //                     moutput[iplayer.family + ' Layer'] += format("IP: {0}, Mask: {1}, Gateway: {2}  ", iplayer.address, iplayer.netmask, iplayer.gateway);
    //                     moutputCount++;
    //                 } else {
    //                     if (iplayer.address) {
    //                         moutput[iplayer.family + ' Layer'] += format("IP: {0}  ", iplayer.address);
    //                         moutputCount++;
    //                     }
    //                 }
    //             }
    //         }
    //         if (moutput['IPv4 Layer'] == '') delete moutput['IPv4 Layer'];
    //         if (moutput['IPv6 Layer'] == '') delete moutput['IPv6 Layer'];
    //         if (moutputCount > 0) {
    //             minfo[ifTitle] = moutput;
    //             info["Networking"] = minfo;
    //         }
    //     }
    // }

Screenshots

No screenshots.

Server Software (please complete the following information):

  • OS: Rocky Linux 9.3
  • Virtualization: No virtualization
  • Network: LAN/WAN hosted on AWS
  • Version: 1.1.22
  • Node: v20.12.2

Client Device (please complete the following information):

  • Device: Laptop
  • OS: Rocky Linux 9.3
  • Network: Remote over WAN
  • Browser: N/A
  • MeshCentralRouter Version: N/A
  • Node: v18.16.0

Remote Device (please complete the following information):

  • Device: Laptop
  • OS:Rocky Linux 9.3
  • Network: Remote over WAN
  • Current Core Version (if known): Current Core: Nov 21 2022, 3618775159

Additional context

To note, we recently upgraded a few months ago from 1.1.0 to 1.1.22 as we saw that the LTS hadn't been updated in quite awhile and decided to modernize. We had not been using meshctrl on the prior version.

Additionally, some devices appear to fail to return differing results. Another remote devices results that seem to be more detailed with no change to the command... I've also had some devices fail to return results in past testing, but haven't located a device yet as an example.

Run on modified script

--- General ---
  Server Name: SERVER
  Computer Name: COMPUTER-2
  IP Address: XXX.XXX.XXX.XXX
  Icon: 2
--- Operating System ---
  Name: COMPUTER-2
  Version: Rocky Linux 9.3 (Blue Onyx)
--- Mesh Agent ---
  Mesh Agent: Linux 64bit
  Last agent connection: 5/16/2024, 8:51:59 AM
  Last agent address: XXX.XXX.XXX.XXX
--- Intel Active Management Technology (Intel AMT) ---
  Version: v11.8.90
  Provisioning State: <i>Unknown</i>
  Security: TLS is not setup
  Admin Credentials: Not Known
--- BIOS ---
  Vendor: Dell Inc.
  Version: 1.32.4
--- Motherboard ---
  Vendor: Dell Inc.
  Name: 111111
  Serial: /AAAAAA/BBBBBBBBBBBB
  Version: A00
  Identifier: 11111111-1111-1111-1111-11111111111
  CPU: Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz
  GPU1: Intel Corporation Skylake GT2 [HD Graphics 520] (rev 07)

Same device run on stock meshctrl.js

Provides networking and storage info.

--- General ---
  Server Name: SERVER
  Computer Name: COMPUTER-2
  IP Address: XXX.XXX.XXX.XXX
  Icon: 2
--- Operating System ---
  Name: COMPUTER-2
  Version: Rocky Linux 9.3 (Blue Onyx)
--- Mesh Agent ---
  Mesh Agent: Linux 64bit
  Last agent connection: 5/16/2024, 8:51:59 AM
  Last agent address: XXX.XXX.XXX.XXX
--- Networking ---
  enp0s31f6:
    MAC Layer: MAC: 11:11:11:11:11:11
  wlp1s0:
    MAC Layer: MAC: 11:11:11:11:11:11
    IPv4 Layer: IP: XXX.XXX.XXX.XXX, Mask: 255.255.255.0, Gateway: XXX.XXX.XXX.XXX
    IPv6 Layer: IP: 1111:1111:1111:1111:1111:1111:1111:1111  IP: 1111::1111:1111:1111:1111%3  
  docker0:
    MAC Layer: MAC: 11:11:11:11:11:11
    IPv4 Layer: IP: XXX.XXX.XXX.XXX
  wg0:
    IPv4 Layer: IP: XXX.XXX.XXX.XXX
--- Intel Active Management Technology (Intel AMT) ---
  Version: v11.8.90
  Provisioning State: <i>Unknown</i>
  Security: TLS is not setup
  Admin Credentials: Not Known
--- BIOS ---
  Vendor: Dell Inc.
  Version: 1.32.4
--- Motherboard ---
  Vendor: Dell Inc.
  Name: 111111
  Serial: /AAAAAA/BBBBBBBBBBBB
  Version: A00
  Identifier: 11111111-1111-1111-1111-11111111111
  CPU: Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz
  GPU1: Intel Corporation Skylake GT2 [HD Graphics 520] (rev 07)
--- Storage ---
  ATA Disk:
    Model: SK hynix SC300 M
    Capacity: 238GiB (256GB)
  SD Card:
    Model: SL16G
    Capacity: 14GiB (15GB)

Additionally, here is info about the meshctrl.js file. We pulled this file on Apr 26 from NPM for the install.

Top lines of file

#!/usr/bin/env node

/**
* @description MeshCentral command line tool
* @author Ylian Saint-Hilaire
* @copyright Intel Corporation 2018-2022
* @license Apache-2.0
* @version v0.0.1
*/

Your config.json file

{
  "$schema": "http://info.meshcentral.com/downloads/meshcentral-config-schema.json",
  "__comment1__": "This is a simple configuration file, all values and sections that start with underscore (_) are ignored. Edit a section and remove the _ in front of the name. Refer to the user's guide for details.",
  "__comment2__": "See node_modules/meshcentral/sample-config-advanced.json for a more advanced example.",
  "settings": {
    "MongoDb": "mongodb://127.0.0.1:27017/SERVER",
    "cert": "SERVER",
    "WANonly": true,
    "_LANonly": true,
    "_sessionKey": "SECRET",
    "_port": 443,
    "_aliasPort": 443,
    "_redirPort": 80,
    "_redirAliasPort": 80,
    "agentPort": 444,
    "agentAliasPort": 443,
    "agentAliasDNS": "DOMAIN",
    "maxInvalidLogin": {
      "time":10,
      "count": 10,
      "coolofftime": 10
    },
    "authLog": "/opt/meshcentral/LoginAttemptsLog"
  },
  "domains": {
    "": {
      "loginKey": [KEY1, KEY2],
      "title": "",
      "_title2": "Servername",
      "welcomePicture": "A_black_background.jpg",
      "welcomePictureFullScreen": true,
      "_minify": true,
      "_newAccounts": true,
      "_userNameIsEmail": true,
      "passwordRequirements": {
        "min": 1,
        "max": 100,
        "upper": 1,
        "lower": 1,
        "numeric": 1,
        "nonalpha": 1,
        "reset": 300,
        "force2factor": true,
        "email2factor": false,
        "sms2factor": false,
        "oldPasswordBan": 10,
        "loginTokens": false
      },
      "twoFactorCookieDurationDays": 0
    }
  },
  "letsencrypt": {
    "__comment__": "Requires NodeJS 8.x or better, Go to https://letsdebug.net/ first before trying Let's Encrypt.",
    "email": ":EMAIL",
    "names": "DOMAIN",
    "production": true
  }
}

@timaw7 timaw7 added the bug label May 16, 2024
@timaw7
Copy link
Author

timaw7 commented May 16, 2024

Just a followup. I'm making some assumptions here, but it is erroring on returning netinfo. I was able on the first device to pull that info through the web console tab.

> netinfo
{
  lo: {
    0: {
      mac: "00:00:00:00:00:00"
      type: "ethernet"
      status: "up"
      address: "127.0.0.1"
      family: "IPv4"
      netmask: "255.0.0.0"
    }
    1: {
      mac: "00:00:00:00:00:00"
      type: "ethernet"
      status: "up"
      address: "::1"
      family: "IPv6"
      netmask: "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"
    }
  }
  enp0s31f6: {
    0: {
      mac: "11:11:11:11:11:11"
      type: "ethernet"
      status: "up"
    }
  }
  wlp1s0: {
    0: {
      mac: "22:22:22:22:22:22"
      type: "ethernet"
      status: "up"
      address: "XXX.XXX.XXX.XXX"
      family: "IPv4"
      gateway: "XXX.XXX.XXX.XXX"
      netmask: "255.255.255.0"
    }
    1: {
      mac: "22:22:22:22:22:22"
      type: "ethernet"
      status: "up"
      address: "fe11::"fe11:"fe11:"fe11:"fe11%3"
      family: "IPv6"
      netmask: "ffff:ffff:ffff:ffff::"
    }
  }
  bridge0: {
    0: {
      mac: "22:22:22:22:22:22"
      type: "ethernet"
      status: "up"
      address: ""fe11::"fe11:"fe11:"fe11:"fe11%4"
      family: "IPv6"
      netmask: "ffff:ffff:ffff:ffff::"
    }
  }
  vnet0: {
    0: {
      mac: "22:22:22:22:22:22"
      type: "ethernet"
      status: "up"
      address: "fe11::"fe11:"fe11:"fe11:"fe11%4"
      family: "IPv6"
      netmask: "ffff:ffff:ffff:ffff::"
    }
  }
  wg0: {
    0: {
      status: "up"
      address: "XXX.XXX.XXX.XXX"
      family: "IPv4"
      netmask: "255.255.255.255"
    }
  }

@timaw7
Copy link
Author

timaw7 commented May 16, 2024

A side question here. Is it possible to pull the Node ID through the Web GUI? I'm currently using the listDevices command which is not convenient for testing.

@si458
Copy link
Collaborator

si458 commented May 17, 2024

i can replicate the issue, looking into it now for you 👍

@si458 si458 self-assigned this May 17, 2024
@si458
Copy link
Collaborator

si458 commented May 17, 2024

the issue is because your nodeid will have a $ in it which isnt phased correctly at the command line
try putting nodeid with ' around instead --id 'LONGNODE$ID'

@timaw7
Copy link
Author

timaw7 commented May 17, 2024

@si458 You are correct. The executed command works with ' but not " for the nodeid. I can also confirm the not working nodeid has a $ in it whereas the devices that worked did not have the $.

I think you've nailed this one. Any idea how to get the nodeid out of the webgui? Would just be convenient for testing.

@si458
Copy link
Collaborator

si458 commented May 17, 2024

@timaw7 the nodeid is actually part of the URl itself
https://meshcentral.myserver.com/?viewmode=10&gotonode=lupekvnEmP$6OBe0yhtXEzBl9FUAcuyF@T7fs1gIQxCDGgK4l1YBk0Ziua01TLZA
so in this example its the gotonode= value
and to be honest after a quick check, the is actually nowhere listing the node id haha, not even in the console tab!
will add a nodeid option into the console tab, so you can type nodeid and it will return its id for you! 👍

@timaw7
Copy link
Author

timaw7 commented May 17, 2024

@si458 I see it in the URI now. Right in front of my face. Yeah at least on the console tab would be ideal.

I've confirmed that this works in a script for all my devices (over 80+). Also a side note, this fixes another issue I was having. Some device calls were not returning at all as opposed to erroring like above. This apparently fixes it all. Thanks for the help! Closing out the issue.

@timaw7 timaw7 closed this as completed May 17, 2024
@si458
Copy link
Collaborator

si458 commented May 17, 2024

from what ive learn use ' on linux and " with windows,
and IF no special characters like $ @ in the nodeid then use without both

@si458 si458 added the docs label May 17, 2024
si458 added a commit that referenced this issue May 17, 2024
Signed-off-by: si458 <simonsmith5521@gmail.com>
@si458
Copy link
Collaborator

si458 commented May 17, 2024

side note: just added Node ID: into the info output in the console tab hehe e8da6a6

@si458
Copy link
Collaborator

si458 commented May 23, 2024

side note: 7cf14a2 ive pushed a fix to show invalid device id if no data at all was returned

wdlut added a commit to wdlut/MeshCentral that referenced this issue Jun 27, 2024
commit 602eb3c
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun Jun 23 21:00:30 2024 +0100

    add encoding options to remote desktop (Ylianst#6198)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 28c522c
Author: si458 <simonsmith5521@gmail.com>
Date:   Sun Jun 23 14:21:08 2024 +0100

    add android version+api to dtails page

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit df91c90
Author: si458 <simonsmith5521@gmail.com>
Date:   Thu Jun 20 22:34:08 2024 +0100

    fix ip fliters from files Ylianst#3401

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 81557ab
Author: si458 <simonsmith5521@gmail.com>
Date:   Thu Jun 20 18:16:34 2024 +0100

    forgot user new events filter fix Ylianst#6189

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 6b21bac
Author: si458 <simonsmith5521@gmail.com>
Date:   Thu Jun 20 18:07:50 2024 +0100

    fix new events appearing when filtered Ylianst#6189

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 46ebadf
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Thu Jun 20 12:36:24 2024 +0100

    fix mac mpkg agent again (Ylianst#6194)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 6c3e60e
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon Jun 17 10:54:58 2024 +0100

    update translate.json

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 7955bc4
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon Jun 17 10:10:35 2024 +0100

    include connect-flash with passport to allow displaying of errors

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 482e79f
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Mon Jun 17 09:48:21 2024 +0100

    fix meshcentral-web-domain translate displaying (Ylianst#6180)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 0a89d07
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri Jun 14 09:56:02 2024 +0100

    add userSessionsSort for session sorting (Ylianst#6177)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit c053c14
Author: si458 <simonsmith5521@gmail.com>
Date:   Wed Jun 12 14:23:37 2024 +0100

    fix star covering desc in list view Ylianst#6174

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 5950b2c
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue Jun 11 20:46:45 2024 +0100

    make sure to clear flash errors after display to avoid showing again Ylianst#6154

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 42a07e9
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue Jun 11 20:38:09 2024 +0100

    fix passport failureRedirect for subdomain paths

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit d7341ab
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue Jun 11 20:06:19 2024 +0100

    display flash errors for external auths like saml or oidc on the login screen Ylianst#6154

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 74d6252
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue Jun 11 17:02:20 2024 +0100

    increase uploadFile buffer to speed up file uploads Ylianst#6169

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit b08f382
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue Jun 11 10:05:58 2024 +0100

    fix obj.user._id undefined for rdp/ssh Ylianst#6127

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 6976992
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue Jun 4 10:26:29 2024 +0100

    fix oidc paths with aliasport Ylianst#6148

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit b1c3e2a
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Jun 1 23:17:13 2024 +0100

    remove power-monitor server side to fix windows battery levels Ylianst#6143

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit c67a76b
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Jun 1 20:31:25 2024 +0100

    fix oidc reauth Ylianst#6132

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 62199d8
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Jun 1 17:13:22 2024 +0100

    fix handleStrategyLogin invalid token/user

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 52a2194
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 28 20:00:33 2024 +0100

    require connect-flash for oidc Ylianst#6132

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 2b3c329
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 28 18:26:21 2024 +0100

    remove comments and console.log meshctrl.js

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 17cf36e
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 28 18:24:39 2024 +0100

    add installflags to agentdownload in meshctrl.js Ylianst#6133

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit a171cde
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat May 25 16:57:15 2024 +0100

    update package-lock.json

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 5d5e861
Author: Ylian Saint-Hilaire <ysainthilaire@hotmail.com>
Date:   Sat May 25 08:38:28 2024 -0700

    Version 1.1.24

commit 26ac23c
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 24 17:27:22 2024 +0100

    fix web-rdp/web-ssh save creds per user

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 5a7e3d9
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 24 16:25:25 2024 +0100

    fix allowSavingDeviceCredentials description

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit abbb0fa
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 24 15:51:39 2024 +0100

    fix sharing keyboard input after Ctrl+Alt+Delete Ylianst#6120

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 89b67ff
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 24 15:30:03 2024 +0100

    fix sharing latency and timer

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 6c685d5
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 24 10:54:27 2024 +0100

    fix realname undefined Ylianst#6118

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 49b5612
Author: Ylian Saint-Hilaire <ysainthilaire@hotmail.com>
Date:   Thu May 23 15:47:44 2024 -0700

    Updated ExpressJS to 4.19.2

commit aa8f45f
Author: Ylian Saint-Hilaire <ysainthilaire@hotmail.com>
Date:   Thu May 23 15:32:29 2024 -0700

    Version 1.1.23

commit 7cf14a2
Author: si458 <simonsmith5521@gmail.com>
Date:   Thu May 23 20:59:33 2024 +0100

    meshctrl deviceinfo error on unescaped nodeid

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 7e7361d
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 21 20:01:45 2024 +0100

    add/fix iplocation

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 4cd7b40
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 21 19:42:52 2024 +0100

    fix linux storage volumes 0kb

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit bc6451f
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 21 19:04:43 2024 +0100

    migrate groups.enabled in oidc Ylianst#6104

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit f1ba76a
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 21 17:47:39 2024 +0100

    fix device notifications not dismissing on other web sessions

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 385a473
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 21 16:56:56 2024 +0100

    forgot oidc group schema fix

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 5c13f17
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 21 16:05:00 2024 +0100

    fix oidc sync groups

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 323ef2d
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat May 18 19:45:31 2024 +0100

    fix cookieEncoding hex for 2fa Ylianst#6096

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit dd24993
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sat May 18 18:30:26 2024 +0100

    fix keyboard shortcuts and add restore default keyboard shortcuts (Ylianst#6103)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 30d958f
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat May 18 12:26:27 2024 +0100

    fix auth-oidc-callback examples

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 1c8d664
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 17 20:01:12 2024 +0100

    fix oidc groups.claim undefined

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit b22e56b
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri May 17 18:09:48 2024 +0100

    add openidConnectStrategy to mkdocs.yml

commit bc2f34b
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri May 17 17:13:59 2024 +0100

    remove sendconsoletext from computer-identifiers.js

commit e8da6a6
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri May 17 14:41:51 2024 +0100

    add nodeid to info in console Ylianst#6097

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 77d268d
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 14 20:49:08 2024 +0100

    listdevice filter should be string Ylianst#6091

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 23ee76e
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 14 10:11:49 2024 +0100

    fix mac volume detection for older os

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit be3e333
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 14 00:13:46 2024 +0100

    add macos storage volumes using df

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit e3f6822
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon May 13 23:44:47 2024 +0100

    add linux storage volumes using df

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit b71b4d0
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon May 13 21:47:08 2024 +0100

    bring power-monitor server side to fix mac battery levels

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit bf7957e
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun May 12 15:45:24 2024 +0100

    add zerossl acme (Ylianst#6084)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 19eb123
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun May 12 15:37:47 2024 +0100

    set min to node 16 (Ylianst#5955)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 274bb52
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri May 10 14:12:39 2024 +0100

    allow msh get/set/delete from console (Ylianst#6074)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 33c0e82
Author: si458 <simonsmith5521@gmail.com>
Date:   Tue May 7 14:16:23 2024 +0100

    fix mobile ui upload mesh agent core

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 56d6527
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Wed Apr 24 09:09:35 2024 +0100

    add run commands to mobile ui (Ylianst#6044)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 3ce2fd9
Author: adnan29979 <148310766+adnan29979@users.noreply.github.com>
Date:   Mon Apr 22 05:19:22 2024 +0600

    Missing languages added to translator

    All languages from source code default.handlebars added to translator.htm

commit eb27334
Author: adnan29979 <148310766+adnan29979@users.noreply.github.com>
Date:   Mon Apr 22 00:20:51 2024 +0600

    Doc update - Addition of 'How to Contribute' section (Ylianst#6046)

commit 414d9b9
Author: si458 <simonsmith5521@gmail.com>
Date:   Fri Apr 19 11:48:49 2024 +0100

    undo Ylianst#5452 and Ylianst#6036 commits

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 1747ff7
Author: si458 <simonsmith5521@gmail.com>
Date:   Thu Apr 18 20:48:58 2024 +0100

    fix email in use meshctrl reply Ylianst#6036

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit f39b6f8
Author: si458 <simonsmith5521@gmail.com>
Date:   Thu Apr 18 20:22:25 2024 +0100

    add smtp user/pass to schema and help docs

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit ca868af
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Thu Apr 18 17:09:31 2024 +0100

    update translate readme.txt url Ylianst#6041

commit 410c84c
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Thu Apr 18 17:07:01 2024 +0100

    add --mysql --mariadb arguments for stateless run (Ylianst#6031)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 18b731f
Author: Attocode1 <3877747+Attocode1@users.noreply.github.com>
Date:   Thu Apr 18 09:41:07 2024 -0500

    Updated install document - Corrected chmod command examples. (Ylianst#6035)

commit 832e618
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon Apr 15 18:48:25 2024 +0100

    forgot semicolon in a hurry meshctrl.js Ylianst#6029

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 7b8cf85
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon Apr 15 18:46:40 2024 +0100

    dont require, use readFileSync and phase for config.json in meshctrl Ylianst#6029

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 1dca9e2
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon Apr 15 14:51:18 2024 +0100

    fix missing connect-flash again Ylianst#6028

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 30d570f
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Mon Apr 15 13:00:42 2024 +0100

    translation fixes for meshcentral-data-domain (Ylianst#6027)

    * dont translate min files
    * translate meshcentral-web-domain folders with --translate
    * also translate default views folder incase of changes

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit f854c80
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Apr 13 23:00:43 2024 +0100

    fix meshctrl configfile undefined

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit f5891f2
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri Apr 12 10:43:06 2024 +0100

    fix custom public folders for dns domains (Ylianst#6018)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 1da33f0
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Thu Apr 11 18:51:54 2024 +0100

    add nice404 to invite and fix invite with dns use Ylianst#6017

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit e025e95
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Thu Apr 11 17:43:08 2024 +0100

    fix authStrategyFlags using wrong domain (Ylianst#6015)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit ccf57be
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Tue Apr 9 13:31:00 2024 +0100

    add missing rights to meshctrl and meshServerRightsArrayToNumber (Ylianst#6004)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 4ba08a9
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Tue Apr 9 11:47:32 2024 +0100

    unEscape ssh/rdp creds from db (Ylianst#6001)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 548edd1
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun Apr 7 19:12:01 2024 +0100

    add lastbootuptime to columns and device powered on event (Ylianst#5999)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 31ebb21
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Apr 6 23:47:02 2024 +0100

    fix ipv6 only letsencrypt Ylianst#5988

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 4a3c6db
Author: adnan29979 <148310766+adnan29979@users.noreply.github.com>
Date:   Sun Apr 7 02:27:01 2024 +0600

    Fixing documentation of gmail smtp (Ylianst#5998)

    • removal of "accessToken" from documentation, since it is not in the source code.
    • addition of a new step of 'changing publishing status from testing to production'
    • removal of a duplicate picture in index.md and adding an appropriate pic instead.

commit f9af1ff
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Apr 6 21:11:32 2024 +0100

    fix powertimeline daylights savings on mobile ui Ylianst#5997

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 95e7997
Author: si458 <simonsmith5521@gmail.com>
Date:   Sat Apr 6 21:09:43 2024 +0100

    fix daylight savings in powertimeline Ylianst#5997

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 9081a6a
Author: buckybytes <158571971+buckybytes@users.noreply.github.com>
Date:   Fri Apr 5 08:35:18 2024 -0500

    Google Workspace OAuth2 SMTP Documentation (Ylianst#5939)

commit afc6165
Author: si458 <simonsmith5521@gmail.com>
Date:   Wed Apr 3 11:41:16 2024 +0100

    nochecks description attempt 3 Ylianst#5987

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit c9c0a6c
Author: si458 <simonsmith5521@gmail.com>
Date:   Wed Apr 3 11:22:29 2024 +0100

    fix nocheck description again Ylianst#5987

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit b46c322
Author: si458 <simonsmith5521@gmail.com>
Date:   Wed Apr 3 11:18:46 2024 +0100

    fix nochecks description Ylianst#5987

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 4ff5a5c
Author: si458 <simonsmith5521@gmail.com>
Date:   Wed Apr 3 11:14:42 2024 +0100

    add letsencrypt nochecks to schema Ylianst#5987

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 65d1346
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Wed Apr 3 09:51:18 2024 +0100

    open files/folders on desktop with files and console with openfile (Ylianst#5986)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 5d1c8ca
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Tue Apr 2 23:36:05 2024 +0100

    add open web link to mobile ui (Ylianst#5985)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 9294488
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Mon Apr 1 15:48:01 2024 +0100

    fix name display for oauth (Ylianst#5980)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit d2a0946
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Mon Apr 1 00:21:47 2024 +0100

    add user import via csv file (Ylianst#5978)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 3be8ec5
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun Mar 31 22:28:10 2024 +0100

    add mac uninstall and fix windows uninstall (Ylianst#5976)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 1024894
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun Mar 31 19:20:15 2024 +0100

    check db exists first before creating in postgres (Ylianst#5968)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 8e8cc4b
Author: si458 <simonsmith5521@gmail.com>
Date:   Sun Mar 31 14:05:20 2024 +0100

    rename 2x mac image

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit ce93c89
Author: si458 <simonsmith5521@gmail.com>
Date:   Sun Mar 31 13:55:41 2024 +0100

    fix null values in filters

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 7b67b99
Author: si458 <simonsmith5521@gmail.com>
Date:   Sun Mar 31 13:52:16 2024 +0100

    fix postgres nedbtodb

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 95bbd71
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Sun Mar 31 13:50:38 2024 +0100

    add filter for events (Ylianst#5975)

    * add filter to node events
    * add filter to my events
    * add filter to user events
    * improve sql querys

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 8e6cc14
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri Mar 29 18:11:29 2024 +0000

    set flatpickr to 1 minute increments (Ylianst#5974)

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit 862e2ee
Author: buckybytes <158571971+buckybytes@users.noreply.github.com>
Date:   Wed Mar 27 06:26:38 2024 -0500

    Various grammar, spelling, and clarity issues. (Ylianst#5964)

    * Update plugins.md

    * Update faq.md

    * Update debugging.md

    * Update customization.md

    * Update codesigning.md

    * Update assistant.md

commit 81e9803
Author: si458 <simonsmith5521@gmail.com>
Date:   Mon Mar 25 13:41:42 2024 +0000

    fix mac memory part number

    Signed-off-by: si458 <simonsmith5521@gmail.com>

commit fbae83d
Author: Ylian Saint-Hilaire <ysainthilaire@hotmail.com>
Date:   Sun Mar 24 11:43:32 2024 -0700

    Version 1.1.22

commit 8498414
Author: adnan29979 <148310766+adnan29979@users.noreply.github.com>
Date:   Mon Mar 25 00:32:08 2024 +0600

    Doc update - Agent Invitation Customization (Ylianst#5937)

    * Update assistant.md

    * Email Invite and customization

    * Update assistant.md

    * Email Invitation pic upload

    * point agent invitation customization to assistant.md

commit d33aa25
Author: Ylian Saint-Hilaire <ysainthilaire@hotmail.com>
Date:   Sun Mar 24 11:14:42 2024 -0700

    Updated Spanish translation.

commit 8775b7d
Author: Ylian Saint-Hilaire <ysainthilaire@hotmail.com>
Date:   Sun Mar 24 11:03:33 2024 -0700

    Set login autocomplete to off when set to false in config.json.

commit e6ee203
Author: Simon Smith <simonsmith5521@gmail.com>
Date:   Fri Mar 22 14:31:47 2024 +0000

    add biosSerial/biosMode to csv (Ylianst#5949)

    Signed-off-by: si458 <simonsmith5521@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants